io.camunda.operate.model.Variable Maven / Gradle / Ivy
package io.camunda.operate.model;
public class Variable {
private Long key;
private Long processInstanceKey;
private Long scopeKey;
private String name;
private String value;
private Boolean truncated;
private String tenantId;
public Long getKey() {
return key;
}
public void setKey(Long key) {
this.key = key;
}
public Long getProcessInstanceKey() {
return processInstanceKey;
}
public void setProcessInstanceKey(Long processInstanceKey) {
this.processInstanceKey = processInstanceKey;
}
public Long getScopeKey() {
return scopeKey;
}
public void setScopeKey(Long scopeKey) {
this.scopeKey = scopeKey;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public Boolean getTruncated() {
return truncated;
}
public void setTruncated(Boolean truncated) {
this.truncated = truncated;
}
public String getTenantId() {
return tenantId;
}
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy