Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add versionTag property to process definition (#160) #164

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class ProcessDefinition {
private Long version;
private String bpmnProcessId;
private String tenantId;
private String versionTag;

public Long getKey() {
return key;
Expand Down Expand Up @@ -46,4 +47,12 @@ public String getTenantId() {
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}

public String getVersionTag() {
return versionTag;
}

public void setVersionTag(String versionTag) {
this.versionTag = versionTag;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ public ProcessDefinitionFilterBuilder tenantId(String tenantId) {
return this;
}

public ProcessDefinitionFilterBuilder versionTag(String versionTag) {
filter.setVersionTag(versionTag);
return this;
}

public ProcessDefinitionFilter build() {
return filter;
}
Expand Down
Loading