Skip to content

Commit

Permalink
TSK-758 - Rename property type from TaskanaHistoryEvent to eventType
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciorecuerda authored and Martin Rojas Miguel Angel committed Dec 11, 2018
1 parent f6f50d7 commit 664477e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ public void setTaskId(String taskId) {
this.taskId = taskId;
}

public String getType() {
public String getEventType() {
return eventType;
}

public void setType(String type) {
this.eventType = type;
public void setEventType(String eventType) {
this.eventType = eventType;
}

public Instant getCreated() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class ClaimedEvent extends TaskEvent {

public ClaimedEvent(Task task) {
super(task);
setType("TASK_CLAIMED");
setEventType("TASK_CLAIMED");
created = task.getClaimed();
}
}

0 comments on commit 664477e

Please sign in to comment.