All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.b2bi.model.UpdateTransformerRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS B2B Data Interchange module holds the client classes that are used for communicating with AWS B2B Data Interchange Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.b2bi.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class UpdateTransformerRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* Specifies the system-assigned unique identifier for the transformer. *

*/ private String transformerId; /** *

* Specify a new name for the transformer, if you want to update it. *

*/ private String name; /** *

* Specifies that the currently supported file formats for EDI transformations are JSON and * XML. *

*/ private String fileFormat; /** *

* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using * JSONata or XSLT. *

*/ private String mappingTemplate; /** *

* Specifies the transformer's status. You can update the state of the transformer, from active to * inactive, or inactive to active. *

*/ private String status; /** *

* Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. *

*/ private EdiType ediType; /** *

* Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. *

*/ private String sampleDocument; /** *

* Specifies the system-assigned unique identifier for the transformer. *

* * @param transformerId * Specifies the system-assigned unique identifier for the transformer. */ public void setTransformerId(String transformerId) { this.transformerId = transformerId; } /** *

* Specifies the system-assigned unique identifier for the transformer. *

* * @return Specifies the system-assigned unique identifier for the transformer. */ public String getTransformerId() { return this.transformerId; } /** *

* Specifies the system-assigned unique identifier for the transformer. *

* * @param transformerId * Specifies the system-assigned unique identifier for the transformer. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTransformerRequest withTransformerId(String transformerId) { setTransformerId(transformerId); return this; } /** *

* Specify a new name for the transformer, if you want to update it. *

* * @param name * Specify a new name for the transformer, if you want to update it. */ public void setName(String name) { this.name = name; } /** *

* Specify a new name for the transformer, if you want to update it. *

* * @return Specify a new name for the transformer, if you want to update it. */ public String getName() { return this.name; } /** *

* Specify a new name for the transformer, if you want to update it. *

* * @param name * Specify a new name for the transformer, if you want to update it. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTransformerRequest withName(String name) { setName(name); return this; } /** *

* Specifies that the currently supported file formats for EDI transformations are JSON and * XML. *

* * @param fileFormat * Specifies that the currently supported file formats for EDI transformations are JSON and * XML. * @see FileFormat */ public void setFileFormat(String fileFormat) { this.fileFormat = fileFormat; } /** *

* Specifies that the currently supported file formats for EDI transformations are JSON and * XML. *

* * @return Specifies that the currently supported file formats for EDI transformations are JSON and * XML. * @see FileFormat */ public String getFileFormat() { return this.fileFormat; } /** *

* Specifies that the currently supported file formats for EDI transformations are JSON and * XML. *

* * @param fileFormat * Specifies that the currently supported file formats for EDI transformations are JSON and * XML. * @return Returns a reference to this object so that method calls can be chained together. * @see FileFormat */ public UpdateTransformerRequest withFileFormat(String fileFormat) { setFileFormat(fileFormat); return this; } /** *

* Specifies that the currently supported file formats for EDI transformations are JSON and * XML. *

* * @param fileFormat * Specifies that the currently supported file formats for EDI transformations are JSON and * XML. * @return Returns a reference to this object so that method calls can be chained together. * @see FileFormat */ public UpdateTransformerRequest withFileFormat(FileFormat fileFormat) { this.fileFormat = fileFormat.toString(); return this; } /** *

* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using * JSONata or XSLT. *

* * @param mappingTemplate * Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using * JSONata or XSLT. */ public void setMappingTemplate(String mappingTemplate) { this.mappingTemplate = mappingTemplate; } /** *

* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using * JSONata or XSLT. *

* * @return Specifies the mapping template for the transformer. This template is used to map the parsed EDI file * using JSONata or XSLT. */ public String getMappingTemplate() { return this.mappingTemplate; } /** *

* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using * JSONata or XSLT. *

* * @param mappingTemplate * Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using * JSONata or XSLT. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTransformerRequest withMappingTemplate(String mappingTemplate) { setMappingTemplate(mappingTemplate); return this; } /** *

* Specifies the transformer's status. You can update the state of the transformer, from active to * inactive, or inactive to active. *

* * @param status * Specifies the transformer's status. You can update the state of the transformer, from active * to inactive, or inactive to active. * @see TransformerStatus */ public void setStatus(String status) { this.status = status; } /** *

* Specifies the transformer's status. You can update the state of the transformer, from active to * inactive, or inactive to active. *

* * @return Specifies the transformer's status. You can update the state of the transformer, from active * to inactive, or inactive to active. * @see TransformerStatus */ public String getStatus() { return this.status; } /** *

* Specifies the transformer's status. You can update the state of the transformer, from active to * inactive, or inactive to active. *

* * @param status * Specifies the transformer's status. You can update the state of the transformer, from active * to inactive, or inactive to active. * @return Returns a reference to this object so that method calls can be chained together. * @see TransformerStatus */ public UpdateTransformerRequest withStatus(String status) { setStatus(status); return this; } /** *

* Specifies the transformer's status. You can update the state of the transformer, from active to * inactive, or inactive to active. *

* * @param status * Specifies the transformer's status. You can update the state of the transformer, from active * to inactive, or inactive to active. * @return Returns a reference to this object so that method calls can be chained together. * @see TransformerStatus */ public UpdateTransformerRequest withStatus(TransformerStatus status) { this.status = status.toString(); return this; } /** *

* Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. *

* * @param ediType * Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. */ public void setEdiType(EdiType ediType) { this.ediType = ediType; } /** *

* Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. *

* * @return Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. */ public EdiType getEdiType() { return this.ediType; } /** *

* Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. *

* * @param ediType * Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is * supported. X12 is a set of standards and corresponding messages that define specific business documents. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTransformerRequest withEdiType(EdiType ediType) { setEdiType(ediType); return this; } /** *

* Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. *

* * @param sampleDocument * Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. */ public void setSampleDocument(String sampleDocument) { this.sampleDocument = sampleDocument; } /** *

* Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. *

* * @return Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. */ public String getSampleDocument() { return this.sampleDocument; } /** *

* Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. *

* * @param sampleDocument * Specifies a sample EDI document that is used by a transformer as a guide for processing the EDI data. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTransformerRequest withSampleDocument(String sampleDocument) { setSampleDocument(sampleDocument); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTransformerId() != null) sb.append("TransformerId: ").append(getTransformerId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getFileFormat() != null) sb.append("FileFormat: ").append(getFileFormat()).append(","); if (getMappingTemplate() != null) sb.append("MappingTemplate: ").append(getMappingTemplate()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getEdiType() != null) sb.append("EdiType: ").append(getEdiType()).append(","); if (getSampleDocument() != null) sb.append("SampleDocument: ").append(getSampleDocument()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateTransformerRequest == false) return false; UpdateTransformerRequest other = (UpdateTransformerRequest) obj; if (other.getTransformerId() == null ^ this.getTransformerId() == null) return false; if (other.getTransformerId() != null && other.getTransformerId().equals(this.getTransformerId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getFileFormat() == null ^ this.getFileFormat() == null) return false; if (other.getFileFormat() != null && other.getFileFormat().equals(this.getFileFormat()) == false) return false; if (other.getMappingTemplate() == null ^ this.getMappingTemplate() == null) return false; if (other.getMappingTemplate() != null && other.getMappingTemplate().equals(this.getMappingTemplate()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getEdiType() == null ^ this.getEdiType() == null) return false; if (other.getEdiType() != null && other.getEdiType().equals(this.getEdiType()) == false) return false; if (other.getSampleDocument() == null ^ this.getSampleDocument() == null) return false; if (other.getSampleDocument() != null && other.getSampleDocument().equals(this.getSampleDocument()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTransformerId() == null) ? 0 : getTransformerId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getFileFormat() == null) ? 0 : getFileFormat().hashCode()); hashCode = prime * hashCode + ((getMappingTemplate() == null) ? 0 : getMappingTemplate().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getEdiType() == null) ? 0 : getEdiType().hashCode()); hashCode = prime * hashCode + ((getSampleDocument() == null) ? 0 : getSampleDocument().hashCode()); return hashCode; } @Override public UpdateTransformerRequest clone() { return (UpdateTransformerRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy