TSK-726 Change TaskanaHistoryEvent id from String to long
This commit is contained in:
parent
5817cc15a6
commit
e62e0a5ac7
|
|
@ -9,7 +9,7 @@ import pro.taskana.security.CurrentUserContext;
|
||||||
*/
|
*/
|
||||||
public class TaskanaHistoryEvent {
|
public class TaskanaHistoryEvent {
|
||||||
|
|
||||||
protected String id;
|
protected long id;
|
||||||
protected String type;
|
protected String type;
|
||||||
protected String userId;
|
protected String userId;
|
||||||
protected Instant created;
|
protected Instant created;
|
||||||
|
|
@ -19,11 +19,11 @@ public class TaskanaHistoryEvent {
|
||||||
userId = CurrentUserContext.getUserid();
|
userId = CurrentUserContext.getUserid();
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getId() {
|
public long getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(String id) {
|
public void setId(long id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue