File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
extension/java-client-operate/src/main/java/io/camunda/operate Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public class Incident {
1111 private Date creationTime ;
1212 private String state ;
1313 private String tenantId ;
14+ private Long jobKey ;
1415
1516 public Long getKey () {
1617 return key ;
@@ -75,4 +76,12 @@ public String getTenantId() {
7576 public void setTenantId (String tenantId ) {
7677 this .tenantId = tenantId ;
7778 }
79+
80+ public Long getJobKey () {
81+ return jobKey ;
82+ }
83+
84+ public void setJobKey (Long jobKey ) {
85+ this .jobKey = jobKey ;
86+ }
7887}
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ public IncidentFilterBuilder tenantId(String tenantId) {
5050 return this ;
5151 }
5252
53+ public IncidentFilterBuilder jobKey (Long jobKey ) {
54+ filter .setJobKey (jobKey );
55+ return this ;
56+ }
57+
5358 public IncidentFilter build () {
5459 return filter ;
5560 }
You can’t perform that action at this time.
0 commit comments