org.finra.herd.sdk.model.JobAction Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.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.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* A notification action which executes an Activiti job when triggered
*/
@ApiModel(description = "A notification action which executes an Activiti job when triggered")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class JobAction {
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("jobName")
private String jobName = null;
@JsonProperty("correlationData")
private String correlationData = null;
public JobAction namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* The namespace
* @return namespace
**/
@ApiModelProperty(required = true, value = "The namespace")
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public JobAction jobName(String jobName) {
this.jobName = jobName;
return this;
}
/**
* The job name
* @return jobName
**/
@ApiModelProperty(required = true, value = "The job name")
public String getJobName() {
return jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
public JobAction correlationData(String correlationData) {
this.correlationData = correlationData;
return this;
}
/**
* The correlation data
* @return correlationData
**/
@ApiModelProperty(value = "The correlation data")
public String getCorrelationData() {
return correlationData;
}
public void setCorrelationData(String correlationData) {
this.correlationData = correlationData;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
JobAction jobAction = (JobAction) o;
return Objects.equals(this.namespace, jobAction.namespace) &&
Objects.equals(this.jobName, jobAction.jobName) &&
Objects.equals(this.correlationData, jobAction.correlationData);
}
@Override
public int hashCode() {
return Objects.hash(namespace, jobName, correlationData);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class JobAction {\n");
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
sb.append(" jobName: ").append(toIndentedString(jobName)).append("\n");
sb.append(" correlationData: ").append(toIndentedString(correlationData)).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 ");
}
}