TSK-726 Change TaskanaHistoryEvent id from String to long

This commit is contained in:
Martin Rojas Miguel Angel 2018-10-18 17:12:55 +02:00 committed by Holger Hagen
parent 5817cc15a6
commit e62e0a5ac7
1 changed files with 3 additions and 3 deletions

View File

@ -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;
} }