Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.camunda.community.rest.client.dto.TriggerVariableValueDto Maven / Gradle / Ivy
/*
* 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 java.util.HashMap;
import java.util.Map;
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;
/**
* TriggerVariableValueDto
*/
@JsonPropertyOrder({
TriggerVariableValueDto.JSON_PROPERTY_VALUE,
TriggerVariableValueDto.JSON_PROPERTY_TYPE,
TriggerVariableValueDto.JSON_PROPERTY_VALUE_INFO,
TriggerVariableValueDto.JSON_PROPERTY_LOCAL
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-27T13:50:23.655629899Z[Etc/UTC]")
public class TriggerVariableValueDto {
public static final String JSON_PROPERTY_VALUE = "value";
private JsonNullable value = JsonNullable.of(null);
public static final String JSON_PROPERTY_TYPE = "type";
private JsonNullable type = JsonNullable.undefined();
public static final String JSON_PROPERTY_VALUE_INFO = "valueInfo";
private Map valueInfo = new HashMap<>();
public static final String JSON_PROPERTY_LOCAL = "local";
private JsonNullable local = JsonNullable.undefined();
public TriggerVariableValueDto() {
}
public TriggerVariableValueDto value(Object value) {
this.value = JsonNullable.of(value);
return this;
}
/**
* Can be any value - string, number, boolean, array or object. **Note**: Not every endpoint supports every type.
* @return value
**/
@javax.annotation.Nullable
@JsonIgnore
public Object getValue() {
return value.orElse(null);
}
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getValue_JsonNullable() {
return value;
}
@JsonProperty(JSON_PROPERTY_VALUE)
public void setValue_JsonNullable(JsonNullable value) {
this.value = value;
}
public void setValue(Object value) {
this.value = JsonNullable.of(value);
}
public TriggerVariableValueDto type(String type) {
this.type = JsonNullable.of(type);
return this;
}
/**
* The value type of the variable.
* @return type
**/
@javax.annotation.Nullable
@JsonIgnore
public String getType() {
return type.orElse(null);
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getType_JsonNullable() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
public void setType_JsonNullable(JsonNullable type) {
this.type = type;
}
public void setType(String type) {
this.type = JsonNullable.of(type);
}
public TriggerVariableValueDto valueInfo(Map valueInfo) {
this.valueInfo = valueInfo;
return this;
}
public TriggerVariableValueDto putValueInfoItem(String key, Object valueInfoItem) {
if (this.valueInfo == null) {
this.valueInfo = new HashMap<>();
}
this.valueInfo.put(key, valueInfoItem);
return this;
}
/**
* A JSON object containing additional, value-type-dependent properties. For serialized variables of type Object, the following properties can be provided: * `objectTypeName`: A string representation of the object's type name. * `serializationDataFormat`: The serialization format used to store the variable. For serialized variables of type File, the following properties can be provided: * `filename`: The name of the file. This is not the variable name but the name that will be used when downloading the file again. * `mimetype`: The MIME type of the file that is being uploaded. * `encoding`: The encoding of the file that is being uploaded. The following property can be provided for all value types: * `transient`: Indicates whether the variable should be transient or not. See [documentation](https://docs.camunda.org/manual/7.21/user-guide/process-engine/variables#transient-variables) for more informations. (Not applicable for `decision-definition`, ` /process-instance/variables-async`, and `/migration/executeAsync` endpoints)
* @return valueInfo
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE_INFO)
@JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS)
public Map getValueInfo() {
return valueInfo;
}
@JsonProperty(JSON_PROPERTY_VALUE_INFO)
@JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS)
public void setValueInfo(Map valueInfo) {
this.valueInfo = valueInfo;
}
public TriggerVariableValueDto local(Boolean local) {
this.local = JsonNullable.of(local);
return this;
}
/**
* Indicates whether the variable should be a local variable or not. If set to true, the variable becomes a local variable of the execution entering the target activity.
* @return local
**/
@javax.annotation.Nullable
@JsonIgnore
public Boolean getLocal() {
return local.orElse(null);
}
@JsonProperty(JSON_PROPERTY_LOCAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getLocal_JsonNullable() {
return local;
}
@JsonProperty(JSON_PROPERTY_LOCAL)
public void setLocal_JsonNullable(JsonNullable local) {
this.local = local;
}
public void setLocal(Boolean local) {
this.local = JsonNullable.of(local);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TriggerVariableValueDto triggerVariableValueDto = (TriggerVariableValueDto) o;
return equalsNullable(this.value, triggerVariableValueDto.value) &&
equalsNullable(this.type, triggerVariableValueDto.type) &&
Objects.equals(this.valueInfo, triggerVariableValueDto.valueInfo) &&
equalsNullable(this.local, triggerVariableValueDto.local);
}
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(value), hashCodeNullable(type), valueInfo, hashCodeNullable(local));
}
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 TriggerVariableValueDto {\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" valueInfo: ").append(toIndentedString(valueInfo)).append("\n");
sb.append(" local: ").append(toIndentedString(local)).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 `value` to the URL query string
if (getValue() != null) {
try {
joiner.add(String.format("%svalue%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getValue()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `type` to the URL query string
if (getType() != null) {
try {
joiner.add(String.format("%stype%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getType()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `valueInfo` to the URL query string
if (getValueInfo() != null) {
for (String _key : getValueInfo().keySet()) {
try {
joiner.add(String.format("%svalueInfo%s%s=%s", prefix, suffix,
"".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, _key, containerSuffix),
getValueInfo().get(_key), URLEncoder.encode(String.valueOf(getValueInfo().get(_key)), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
}
// add `local` to the URL query string
if (getLocal() != null) {
try {
joiner.add(String.format("%slocal%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getLocal()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
return joiner.toString();
}
}