1

added deserialization tests

This commit is contained in:
Christoph
2020-03-10 14:10:18 +01:00
parent 87c3874a28
commit 42e7cdf673
3 changed files with 65 additions and 33 deletions

View File

@ -11,4 +11,6 @@ public class DeleteUserEvent extends Event {
public DeleteUserEvent(Long event_id, Long group_id, String user_id) {
super(event_id, group_id, user_id);
}
public DeleteUserEvent() {}
}

View File

@ -8,8 +8,8 @@ import lombok.NoArgsConstructor;
@Getter
@NoArgsConstructor
@AllArgsConstructor
@NoArgsConstructor
@JsonTypeInfo(
include = JsonTypeInfo.As.PROPERTY,
use = JsonTypeInfo.Id.NAME,