1

Merge pull request #55 from hhu-propra2/serialization-tests

added deserialization tests
This commit is contained in:
Talha Caliskan
2020-03-10 15:21:25 +01:00
committed by GitHub
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,