org.finra.herd.sdk.model.JobDefinitionCreateRequest 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;
import java.util.ArrayList;
import java.util.List;
import org.finra.herd.sdk.model.Parameter;
import org.finra.herd.sdk.model.S3PropertiesLocation;
/**
* JobDefinitionCreateRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class JobDefinitionCreateRequest {
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("jobName")
private String jobName = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("activitiJobXml")
private String activitiJobXml = null;
@JsonProperty("parameters")
private List parameters = null;
@JsonProperty("s3PropertiesLocation")
private S3PropertiesLocation s3PropertiesLocation = null;
public JobDefinitionCreateRequest namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* The name of a valid namespace known by the system
* @return namespace
**/
@ApiModelProperty(required = true, value = "The name of a valid namespace known by the system")
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public JobDefinitionCreateRequest jobName(String jobName) {
this.jobName = jobName;
return this;
}
/**
* The name of the job definition
* @return jobName
**/
@ApiModelProperty(required = true, value = "The name of the job definition")
public String getJobName() {
return jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
public JobDefinitionCreateRequest description(String description) {
this.description = description;
return this;
}
/**
* An optional description of the job definition
* @return description
**/
@ApiModelProperty(value = "An optional description of the job definition")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public JobDefinitionCreateRequest activitiJobXml(String activitiJobXml) {
this.activitiJobXml = activitiJobXml;
return this;
}
/**
* Activiti workflow XML related to the job. Id should be named as \"{applicationName}.{jobName}\". Activiti XML can not contain a CDATA section
* @return activitiJobXml
**/
@ApiModelProperty(required = true, value = "Activiti workflow XML related to the job. Id should be named as \"{applicationName}.{jobName}\". Activiti XML can not contain a CDATA section ")
public String getActivitiJobXml() {
return activitiJobXml;
}
public void setActivitiJobXml(String activitiJobXml) {
this.activitiJobXml = activitiJobXml;
}
public JobDefinitionCreateRequest parameters(List parameters) {
this.parameters = parameters;
return this;
}
public JobDefinitionCreateRequest addParametersItem(Parameter parametersItem) {
if (this.parameters == null) {
this.parameters = new ArrayList();
}
this.parameters.add(parametersItem);
return this;
}
/**
* Default list of key/value pairs that will be made available to the job when it is executed. These values can be overridden by parameters specified during the job execution
* @return parameters
**/
@ApiModelProperty(value = "Default list of key/value pairs that will be made available to the job when it is executed. These values can be overridden by parameters specified during the job execution ")
public List getParameters() {
return parameters;
}
public void setParameters(List parameters) {
this.parameters = parameters;
}
public JobDefinitionCreateRequest s3PropertiesLocation(S3PropertiesLocation s3PropertiesLocation) {
this.s3PropertiesLocation = s3PropertiesLocation;
return this;
}
/**
* Get s3PropertiesLocation
* @return s3PropertiesLocation
**/
@ApiModelProperty(value = "")
public S3PropertiesLocation getS3PropertiesLocation() {
return s3PropertiesLocation;
}
public void setS3PropertiesLocation(S3PropertiesLocation s3PropertiesLocation) {
this.s3PropertiesLocation = s3PropertiesLocation;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
JobDefinitionCreateRequest jobDefinitionCreateRequest = (JobDefinitionCreateRequest) o;
return Objects.equals(this.namespace, jobDefinitionCreateRequest.namespace) &&
Objects.equals(this.jobName, jobDefinitionCreateRequest.jobName) &&
Objects.equals(this.description, jobDefinitionCreateRequest.description) &&
Objects.equals(this.activitiJobXml, jobDefinitionCreateRequest.activitiJobXml) &&
Objects.equals(this.parameters, jobDefinitionCreateRequest.parameters) &&
Objects.equals(this.s3PropertiesLocation, jobDefinitionCreateRequest.s3PropertiesLocation);
}
@Override
public int hashCode() {
return Objects.hash(namespace, jobName, description, activitiJobXml, parameters, s3PropertiesLocation);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class JobDefinitionCreateRequest {\n");
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
sb.append(" jobName: ").append(toIndentedString(jobName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" activitiJobXml: ").append(toIndentedString(activitiJobXml)).append("\n");
sb.append(" parameters: ").append(toIndentedString(parameters)).append("\n");
sb.append(" s3PropertiesLocation: ").append(toIndentedString(s3PropertiesLocation)).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 ");
}
}