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 @@ -6,6 +6,7 @@ public class ProcessDefinition {
66 private Long version ;
77 private String bpmnProcessId ;
88 private String tenantId ;
9+ private String versionTag ;
910
1011 public Long getKey () {
1112 return key ;
@@ -46,4 +47,12 @@ public String getTenantId() {
4647 public void setTenantId (String tenantId ) {
4748 this .tenantId = tenantId ;
4849 }
50+
51+ public String getVersionTag () {
52+ return versionTag ;
53+ }
54+
55+ public void setVersionTag (String versionTag ) {
56+ this .versionTag = versionTag ;
57+ }
4958}
Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ public ProcessDefinitionFilterBuilder tenantId(String tenantId) {
3333 return this ;
3434 }
3535
36+ public ProcessDefinitionFilterBuilder versionTag (String versionTag ) {
37+ filter .setVersionTag (versionTag );
38+ return this ;
39+ }
40+
3641 public ProcessDefinitionFilter build () {
3742 return filter ;
3843 }
You can’t perform that action at this time.
0 commit comments