We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e68cbf commit 94ef297Copy full SHA for 94ef297
extension/client-java/src/main/java/io/camunda/tasklist/dto/Task.java
@@ -46,6 +46,8 @@ public class Task {
46
47
private String tenantId;
48
49
+ private Integer priority;
50
+
51
private List<Variable> variables;
52
private Implementation implementation;
53
@@ -241,6 +243,14 @@ public void setTenantId(String tenantId) {
241
243
this.tenantId = tenantId;
242
244
}
245
246
+ public Integer getPriority() {
247
+ return priority;
248
+ }
249
250
+ public void setPriority(Integer priority) {
251
+ this.priority = priority;
252
253
254
public List<Variable> getVariables() {
255
return variables;
256
0 commit comments