Skip to content

Commit 69c45f7

Browse files
SimonePalgithub-actions[bot]
authored andcommitted
fix: add priority property to Task (#330)
(cherry picked from commit a6007d4)
1 parent da51aa2 commit 69c45f7

File tree

1 file changed

+10
-0
lines changed
  • extension/client-java/src/main/java/io/camunda/tasklist/dto

1 file changed

+10
-0
lines changed

extension/client-java/src/main/java/io/camunda/tasklist/dto/Task.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ public class Task {
4646

4747
private String tenantId;
4848

49+
private Integer priority;
50+
4951
private List<Variable> variables;
5052
private Implementation implementation;
5153

@@ -241,6 +243,14 @@ public void setTenantId(String tenantId) {
241243
this.tenantId = tenantId;
242244
}
243245

246+
public Integer getPriority() {
247+
return priority;
248+
}
249+
250+
public void setPriority(Integer priority) {
251+
this.priority = priority;
252+
}
253+
244254
public List<Variable> getVariables() {
245255
return variables;
246256
}

0 commit comments

Comments
 (0)