1

Change Lombok annotations to enable Jackson deserializing

This commit is contained in:
Christoph
2020-03-09 15:47:17 +01:00
parent 160e03d9e9
commit 4186e7c09c
7 changed files with 53 additions and 29 deletions

View File

@ -1,10 +1,12 @@
package mops.gruppen2.domain.event;
import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
@EqualsAndHashCode(callSuper = true)
@Value
@Getter
@AllArgsConstructor
@NoArgsConstructor
public class CreateGroupEvent extends Event {
String groupTitle;
String groupDescription;