removed final modifier from aggregate-id
This commit is contained in:
@ -11,11 +11,7 @@ import java.lang.reflect.Method;
|
||||
public abstract class Aggregate {
|
||||
|
||||
@Getter
|
||||
protected final long id;
|
||||
|
||||
protected Aggregate(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
protected long id;
|
||||
|
||||
/**
|
||||
* Ruft die spezifische applyEvent-Methode im entsprechenden Aggregat auf.
|
||||
|
||||
Reference in New Issue
Block a user