1

change user_id to String + add updateRoleEvent

This commit is contained in:
Christoph
2020-03-06 15:58:35 +01:00
parent 32bdbeec51
commit b1d266d7bf
10 changed files with 48 additions and 34 deletions

View File

@ -2,13 +2,11 @@ package mops.gruppen2.events;
import lombok.Getter;
import java.util.List;
@Getter
public class AddUser extends Event{
String vorname, nachname, email;
public AddUser(long id, long gruppe_id, long user_id, String vorname, String nachname, String email) {
public AddUser(long id, long gruppe_id, String user_id, String vorname, String nachname, String email) {
super(id, gruppe_id, user_id);
this.vorname = vorname;
this.nachname = nachname;