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,13 +1,15 @@
package mops.gruppen2.domain.event;
import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
/**
* Ändert nur die Gruppenbeschreibung.
*/
@EqualsAndHashCode(callSuper = true)
@Value
@Getter
@AllArgsConstructor
@NoArgsConstructor
public class UpdateGroupDescriptionEvent extends Event {
String newGroupDescription;