org.openapitools.client.model.ProcessInstanceModificationDto Maven / Gradle / Ivy
/*
* Camunda BPM REST API
* OpenApi Spec for Camunda BPM REST API.
*
* The version of the OpenAPI document: 7.13.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.openapitools.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.openapitools.client.model.ProcessInstanceModificationInstructionDto;
/**
* ProcessInstanceModificationDto
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-05-19T21:06:35.118+02:00[Europe/Berlin]")
public class ProcessInstanceModificationDto {
public static final String SERIALIZED_NAME_SKIP_CUSTOM_LISTENERS = "skipCustomListeners";
@SerializedName(SERIALIZED_NAME_SKIP_CUSTOM_LISTENERS)
private Boolean skipCustomListeners;
public static final String SERIALIZED_NAME_SKIP_IO_MAPPINGS = "skipIoMappings";
@SerializedName(SERIALIZED_NAME_SKIP_IO_MAPPINGS)
private Boolean skipIoMappings;
public static final String SERIALIZED_NAME_INSTRUCTIONS = "instructions";
@SerializedName(SERIALIZED_NAME_INSTRUCTIONS)
private List instructions = null;
public static final String SERIALIZED_NAME_ANNOTATION = "annotation";
@SerializedName(SERIALIZED_NAME_ANNOTATION)
private String annotation;
public ProcessInstanceModificationDto skipCustomListeners(Boolean skipCustomListeners) {
this.skipCustomListeners = skipCustomListeners;
return this;
}
/**
* Skip execution listener invocation for activities that are started or ended as part of this request.
* @return skipCustomListeners
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Skip execution listener invocation for activities that are started or ended as part of this request.")
public Boolean getSkipCustomListeners() {
return skipCustomListeners;
}
public void setSkipCustomListeners(Boolean skipCustomListeners) {
this.skipCustomListeners = skipCustomListeners;
}
public ProcessInstanceModificationDto skipIoMappings(Boolean skipIoMappings) {
this.skipIoMappings = skipIoMappings;
return this;
}
/**
* Skip execution of [input/output variable mappings](https://docs.camunda.org/manual/7.13/user-guide/process-engine/variables/#input-output-variable-mapping) for activities that are started or ended as part of this request.
* @return skipIoMappings
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Skip execution of [input/output variable mappings](https://docs.camunda.org/manual/7.13/user-guide/process-engine/variables/#input-output-variable-mapping) for activities that are started or ended as part of this request.")
public Boolean getSkipIoMappings() {
return skipIoMappings;
}
public void setSkipIoMappings(Boolean skipIoMappings) {
this.skipIoMappings = skipIoMappings;
}
public ProcessInstanceModificationDto instructions(List instructions) {
this.instructions = instructions;
return this;
}
public ProcessInstanceModificationDto addInstructionsItem(ProcessInstanceModificationInstructionDto instructionsItem) {
if (this.instructions == null) {
this.instructions = new ArrayList();
}
this.instructions.add(instructionsItem);
return this;
}
/**
* JSON array of modification instructions. The instructions are executed in the order they are in.
* @return instructions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "JSON array of modification instructions. The instructions are executed in the order they are in.")
public List getInstructions() {
return instructions;
}
public void setInstructions(List instructions) {
this.instructions = instructions;
}
public ProcessInstanceModificationDto annotation(String annotation) {
this.annotation = annotation;
return this;
}
/**
* An arbitrary text annotation set by a user for auditing reasons.
* @return annotation
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "An arbitrary text annotation set by a user for auditing reasons.")
public String getAnnotation() {
return annotation;
}
public void setAnnotation(String annotation) {
this.annotation = annotation;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProcessInstanceModificationDto processInstanceModificationDto = (ProcessInstanceModificationDto) o;
return Objects.equals(this.skipCustomListeners, processInstanceModificationDto.skipCustomListeners) &&
Objects.equals(this.skipIoMappings, processInstanceModificationDto.skipIoMappings) &&
Objects.equals(this.instructions, processInstanceModificationDto.instructions) &&
Objects.equals(this.annotation, processInstanceModificationDto.annotation);
}
@Override
public int hashCode() {
return Objects.hash(skipCustomListeners, skipIoMappings, instructions, annotation);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProcessInstanceModificationDto {\n");
sb.append(" skipCustomListeners: ").append(toIndentedString(skipCustomListeners)).append("\n");
sb.append(" skipIoMappings: ").append(toIndentedString(skipIoMappings)).append("\n");
sb.append(" instructions: ").append(toIndentedString(instructions)).append("\n");
sb.append(" annotation: ").append(toIndentedString(annotation)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}