org.camunda.community.rest.client.dto.DecisionDefinitionDto Maven / Gradle / Ivy
The newest version!
/*
* Camunda Platform REST API
* OpenApi Spec for Camunda Platform REST API.
*
* The version of the OpenAPI document: 7.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.camunda.community.rest.client.dto;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.StringJoiner;
/**
* DecisionDefinitionDto
*/
@JsonPropertyOrder({
DecisionDefinitionDto.JSON_PROPERTY_ID,
DecisionDefinitionDto.JSON_PROPERTY_KEY,
DecisionDefinitionDto.JSON_PROPERTY_CATEGORY,
DecisionDefinitionDto.JSON_PROPERTY_NAME,
DecisionDefinitionDto.JSON_PROPERTY_VERSION,
DecisionDefinitionDto.JSON_PROPERTY_RESOURCE,
DecisionDefinitionDto.JSON_PROPERTY_DEPLOYMENT_ID,
DecisionDefinitionDto.JSON_PROPERTY_TENANT_ID,
DecisionDefinitionDto.JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_ID,
DecisionDefinitionDto.JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_KEY,
DecisionDefinitionDto.JSON_PROPERTY_HISTORY_TIME_TO_LIVE,
DecisionDefinitionDto.JSON_PROPERTY_VERSION_TAG
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-27T13:50:23.655629899Z[Etc/UTC]")
public class DecisionDefinitionDto {
public static final String JSON_PROPERTY_ID = "id";
private JsonNullable id = JsonNullable.undefined();
public static final String JSON_PROPERTY_KEY = "key";
private JsonNullable key = JsonNullable.undefined();
public static final String JSON_PROPERTY_CATEGORY = "category";
private JsonNullable category = JsonNullable.undefined();
public static final String JSON_PROPERTY_NAME = "name";
private JsonNullable name = JsonNullable.undefined();
public static final String JSON_PROPERTY_VERSION = "version";
private JsonNullable version = JsonNullable.undefined();
public static final String JSON_PROPERTY_RESOURCE = "resource";
private JsonNullable resource = JsonNullable.undefined();
public static final String JSON_PROPERTY_DEPLOYMENT_ID = "deploymentId";
private JsonNullable deploymentId = JsonNullable.undefined();
public static final String JSON_PROPERTY_TENANT_ID = "tenantId";
private JsonNullable tenantId = JsonNullable.undefined();
public static final String JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_ID = "decisionRequirementsDefinitionId";
private JsonNullable decisionRequirementsDefinitionId = JsonNullable.undefined();
public static final String JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_KEY = "decisionRequirementsDefinitionKey";
private JsonNullable decisionRequirementsDefinitionKey = JsonNullable.undefined();
public static final String JSON_PROPERTY_HISTORY_TIME_TO_LIVE = "historyTimeToLive";
private JsonNullable historyTimeToLive = JsonNullable.undefined();
public static final String JSON_PROPERTY_VERSION_TAG = "versionTag";
private JsonNullable versionTag = JsonNullable.undefined();
public DecisionDefinitionDto() {
}
public DecisionDefinitionDto id(String id) {
this.id = JsonNullable.of(id);
return this;
}
/**
* The id of the decision definition
* @return id
**/
@javax.annotation.Nullable
@JsonIgnore
public String getId() {
return id.orElse(null);
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getId_JsonNullable() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
public void setId_JsonNullable(JsonNullable id) {
this.id = id;
}
public void setId(String id) {
this.id = JsonNullable.of(id);
}
public DecisionDefinitionDto key(String key) {
this.key = JsonNullable.of(key);
return this;
}
/**
* The key of the decision definition, i.e., the id of the DMN 1.0 XML decision definition.
* @return key
**/
@javax.annotation.Nullable
@JsonIgnore
public String getKey() {
return key.orElse(null);
}
@JsonProperty(JSON_PROPERTY_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getKey_JsonNullable() {
return key;
}
@JsonProperty(JSON_PROPERTY_KEY)
public void setKey_JsonNullable(JsonNullable key) {
this.key = key;
}
public void setKey(String key) {
this.key = JsonNullable.of(key);
}
public DecisionDefinitionDto category(String category) {
this.category = JsonNullable.of(category);
return this;
}
/**
* The category of the decision definition.
* @return category
**/
@javax.annotation.Nullable
@JsonIgnore
public String getCategory() {
return category.orElse(null);
}
@JsonProperty(JSON_PROPERTY_CATEGORY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getCategory_JsonNullable() {
return category;
}
@JsonProperty(JSON_PROPERTY_CATEGORY)
public void setCategory_JsonNullable(JsonNullable category) {
this.category = category;
}
public void setCategory(String category) {
this.category = JsonNullable.of(category);
}
public DecisionDefinitionDto name(String name) {
this.name = JsonNullable.of(name);
return this;
}
/**
* The name of the decision definition.
* @return name
**/
@javax.annotation.Nullable
@JsonIgnore
public String getName() {
return name.orElse(null);
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getName_JsonNullable() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
public void setName_JsonNullable(JsonNullable name) {
this.name = name;
}
public void setName(String name) {
this.name = JsonNullable.of(name);
}
public DecisionDefinitionDto version(Integer version) {
this.version = JsonNullable.of(version);
return this;
}
/**
* The version of the decision definition that the engine assigned to it.
* @return version
**/
@javax.annotation.Nullable
@JsonIgnore
public Integer getVersion() {
return version.orElse(null);
}
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getVersion_JsonNullable() {
return version;
}
@JsonProperty(JSON_PROPERTY_VERSION)
public void setVersion_JsonNullable(JsonNullable version) {
this.version = version;
}
public void setVersion(Integer version) {
this.version = JsonNullable.of(version);
}
public DecisionDefinitionDto resource(String resource) {
this.resource = JsonNullable.of(resource);
return this;
}
/**
* The file name of the decision definition.
* @return resource
**/
@javax.annotation.Nullable
@JsonIgnore
public String getResource() {
return resource.orElse(null);
}
@JsonProperty(JSON_PROPERTY_RESOURCE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getResource_JsonNullable() {
return resource;
}
@JsonProperty(JSON_PROPERTY_RESOURCE)
public void setResource_JsonNullable(JsonNullable resource) {
this.resource = resource;
}
public void setResource(String resource) {
this.resource = JsonNullable.of(resource);
}
public DecisionDefinitionDto deploymentId(String deploymentId) {
this.deploymentId = JsonNullable.of(deploymentId);
return this;
}
/**
* The deployment id of the decision definition.
* @return deploymentId
**/
@javax.annotation.Nullable
@JsonIgnore
public String getDeploymentId() {
return deploymentId.orElse(null);
}
@JsonProperty(JSON_PROPERTY_DEPLOYMENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getDeploymentId_JsonNullable() {
return deploymentId;
}
@JsonProperty(JSON_PROPERTY_DEPLOYMENT_ID)
public void setDeploymentId_JsonNullable(JsonNullable deploymentId) {
this.deploymentId = deploymentId;
}
public void setDeploymentId(String deploymentId) {
this.deploymentId = JsonNullable.of(deploymentId);
}
public DecisionDefinitionDto tenantId(String tenantId) {
this.tenantId = JsonNullable.of(tenantId);
return this;
}
/**
* The tenant id of the decision definition.
* @return tenantId
**/
@javax.annotation.Nullable
@JsonIgnore
public String getTenantId() {
return tenantId.orElse(null);
}
@JsonProperty(JSON_PROPERTY_TENANT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getTenantId_JsonNullable() {
return tenantId;
}
@JsonProperty(JSON_PROPERTY_TENANT_ID)
public void setTenantId_JsonNullable(JsonNullable tenantId) {
this.tenantId = tenantId;
}
public void setTenantId(String tenantId) {
this.tenantId = JsonNullable.of(tenantId);
}
public DecisionDefinitionDto decisionRequirementsDefinitionId(String decisionRequirementsDefinitionId) {
this.decisionRequirementsDefinitionId = JsonNullable.of(decisionRequirementsDefinitionId);
return this;
}
/**
* The id of the decision requirements definition this decision definition belongs to.
* @return decisionRequirementsDefinitionId
**/
@javax.annotation.Nullable
@JsonIgnore
public String getDecisionRequirementsDefinitionId() {
return decisionRequirementsDefinitionId.orElse(null);
}
@JsonProperty(JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getDecisionRequirementsDefinitionId_JsonNullable() {
return decisionRequirementsDefinitionId;
}
@JsonProperty(JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_ID)
public void setDecisionRequirementsDefinitionId_JsonNullable(JsonNullable decisionRequirementsDefinitionId) {
this.decisionRequirementsDefinitionId = decisionRequirementsDefinitionId;
}
public void setDecisionRequirementsDefinitionId(String decisionRequirementsDefinitionId) {
this.decisionRequirementsDefinitionId = JsonNullable.of(decisionRequirementsDefinitionId);
}
public DecisionDefinitionDto decisionRequirementsDefinitionKey(String decisionRequirementsDefinitionKey) {
this.decisionRequirementsDefinitionKey = JsonNullable.of(decisionRequirementsDefinitionKey);
return this;
}
/**
* The key of the decision requirements definition this decision definition belongs to.
* @return decisionRequirementsDefinitionKey
**/
@javax.annotation.Nullable
@JsonIgnore
public String getDecisionRequirementsDefinitionKey() {
return decisionRequirementsDefinitionKey.orElse(null);
}
@JsonProperty(JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getDecisionRequirementsDefinitionKey_JsonNullable() {
return decisionRequirementsDefinitionKey;
}
@JsonProperty(JSON_PROPERTY_DECISION_REQUIREMENTS_DEFINITION_KEY)
public void setDecisionRequirementsDefinitionKey_JsonNullable(JsonNullable decisionRequirementsDefinitionKey) {
this.decisionRequirementsDefinitionKey = decisionRequirementsDefinitionKey;
}
public void setDecisionRequirementsDefinitionKey(String decisionRequirementsDefinitionKey) {
this.decisionRequirementsDefinitionKey = JsonNullable.of(decisionRequirementsDefinitionKey);
}
public DecisionDefinitionDto historyTimeToLive(Integer historyTimeToLive) {
this.historyTimeToLive = JsonNullable.of(historyTimeToLive);
return this;
}
/**
* History time to live value of the decision definition. Is used within [History cleanup](https://docs.camunda.org/manual/7.21/user-guide/process-engine/history/#history-cleanup).
* minimum: 0
* @return historyTimeToLive
**/
@javax.annotation.Nullable
@JsonIgnore
public Integer getHistoryTimeToLive() {
return historyTimeToLive.orElse(null);
}
@JsonProperty(JSON_PROPERTY_HISTORY_TIME_TO_LIVE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getHistoryTimeToLive_JsonNullable() {
return historyTimeToLive;
}
@JsonProperty(JSON_PROPERTY_HISTORY_TIME_TO_LIVE)
public void setHistoryTimeToLive_JsonNullable(JsonNullable historyTimeToLive) {
this.historyTimeToLive = historyTimeToLive;
}
public void setHistoryTimeToLive(Integer historyTimeToLive) {
this.historyTimeToLive = JsonNullable.of(historyTimeToLive);
}
public DecisionDefinitionDto versionTag(String versionTag) {
this.versionTag = JsonNullable.of(versionTag);
return this;
}
/**
* The version tag of the decision definition.
* @return versionTag
**/
@javax.annotation.Nullable
@JsonIgnore
public String getVersionTag() {
return versionTag.orElse(null);
}
@JsonProperty(JSON_PROPERTY_VERSION_TAG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getVersionTag_JsonNullable() {
return versionTag;
}
@JsonProperty(JSON_PROPERTY_VERSION_TAG)
public void setVersionTag_JsonNullable(JsonNullable versionTag) {
this.versionTag = versionTag;
}
public void setVersionTag(String versionTag) {
this.versionTag = JsonNullable.of(versionTag);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DecisionDefinitionDto decisionDefinitionDto = (DecisionDefinitionDto) o;
return equalsNullable(this.id, decisionDefinitionDto.id) &&
equalsNullable(this.key, decisionDefinitionDto.key) &&
equalsNullable(this.category, decisionDefinitionDto.category) &&
equalsNullable(this.name, decisionDefinitionDto.name) &&
equalsNullable(this.version, decisionDefinitionDto.version) &&
equalsNullable(this.resource, decisionDefinitionDto.resource) &&
equalsNullable(this.deploymentId, decisionDefinitionDto.deploymentId) &&
equalsNullable(this.tenantId, decisionDefinitionDto.tenantId) &&
equalsNullable(this.decisionRequirementsDefinitionId, decisionDefinitionDto.decisionRequirementsDefinitionId) &&
equalsNullable(this.decisionRequirementsDefinitionKey, decisionDefinitionDto.decisionRequirementsDefinitionKey) &&
equalsNullable(this.historyTimeToLive, decisionDefinitionDto.historyTimeToLive) &&
equalsNullable(this.versionTag, decisionDefinitionDto.versionTag);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(hashCodeNullable(id), hashCodeNullable(key), hashCodeNullable(category), hashCodeNullable(name), hashCodeNullable(version), hashCodeNullable(resource), hashCodeNullable(deploymentId), hashCodeNullable(tenantId), hashCodeNullable(decisionRequirementsDefinitionId), hashCodeNullable(decisionRequirementsDefinitionKey), hashCodeNullable(historyTimeToLive), hashCodeNullable(versionTag));
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DecisionDefinitionDto {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" key: ").append(toIndentedString(key)).append("\n");
sb.append(" category: ").append(toIndentedString(category)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" resource: ").append(toIndentedString(resource)).append("\n");
sb.append(" deploymentId: ").append(toIndentedString(deploymentId)).append("\n");
sb.append(" tenantId: ").append(toIndentedString(tenantId)).append("\n");
sb.append(" decisionRequirementsDefinitionId: ").append(toIndentedString(decisionRequirementsDefinitionId)).append("\n");
sb.append(" decisionRequirementsDefinitionKey: ").append(toIndentedString(decisionRequirementsDefinitionKey)).append("\n");
sb.append(" historyTimeToLive: ").append(toIndentedString(historyTimeToLive)).append("\n");
sb.append(" versionTag: ").append(toIndentedString(versionTag)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `id` to the URL query string
if (getId() != null) {
try {
joiner.add(String.format("%sid%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getId()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `key` to the URL query string
if (getKey() != null) {
try {
joiner.add(String.format("%skey%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getKey()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `category` to the URL query string
if (getCategory() != null) {
try {
joiner.add(String.format("%scategory%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getCategory()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `name` to the URL query string
if (getName() != null) {
try {
joiner.add(String.format("%sname%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getName()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `version` to the URL query string
if (getVersion() != null) {
try {
joiner.add(String.format("%sversion%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getVersion()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `resource` to the URL query string
if (getResource() != null) {
try {
joiner.add(String.format("%sresource%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getResource()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `deploymentId` to the URL query string
if (getDeploymentId() != null) {
try {
joiner.add(String.format("%sdeploymentId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getDeploymentId()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `tenantId` to the URL query string
if (getTenantId() != null) {
try {
joiner.add(String.format("%stenantId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getTenantId()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `decisionRequirementsDefinitionId` to the URL query string
if (getDecisionRequirementsDefinitionId() != null) {
try {
joiner.add(String.format("%sdecisionRequirementsDefinitionId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getDecisionRequirementsDefinitionId()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `decisionRequirementsDefinitionKey` to the URL query string
if (getDecisionRequirementsDefinitionKey() != null) {
try {
joiner.add(String.format("%sdecisionRequirementsDefinitionKey%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getDecisionRequirementsDefinitionKey()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `historyTimeToLive` to the URL query string
if (getHistoryTimeToLive() != null) {
try {
joiner.add(String.format("%shistoryTimeToLive%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getHistoryTimeToLive()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `versionTag` to the URL query string
if (getVersionTag() != null) {
try {
joiner.add(String.format("%sversionTag%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getVersionTag()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy