some uuid improvements
This commit is contained in:
@ -6,6 +6,8 @@ import lombok.NoArgsConstructor;
|
||||
import mops.gruppen2.domain.Group;
|
||||
import mops.gruppen2.domain.exception.EventException;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@ -13,8 +15,8 @@ public class UpdateUserMaxEvent extends Event {
|
||||
|
||||
private Long userMaximum;
|
||||
|
||||
public UpdateUserMaxEvent(Long group_id, String user_id, Long userMaximum) {
|
||||
super(group_id,user_id);
|
||||
public UpdateUserMaxEvent(UUID group_id, String user_id, Long userMaximum) {
|
||||
super(group_id, user_id);
|
||||
this.userMaximum = userMaximum;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user