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

org.caqh.soap.wsdl.corerule2_2_0.COREEnvelopeBatchResultsAckSubmissionResponse Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.11 at 11:39:13 AM EST 
//


package org.caqh.soap.wsdl.corerule2_2_0;

import javax.activation.DataHandler;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlMimeType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PayloadType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ProcessingMode" type="{http://www.caqh.org/SOAP/WSDL/CORERule2.2.0.xsd}BatchMode"/>
 *         <element name="PayloadID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="PayloadLength" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="TimeStamp" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="SenderID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ReceiverID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="CORERuleVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="CheckSum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Payload" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ErrorMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "payloadType", "processingMode", "payloadID", "payloadLength", "timeStamp", "senderID", "receiverID", "coreRuleVersion", "checkSum", "payload", "errorCode", "errorMessage" }) @XmlRootElement(name = "COREEnvelopeBatchResultsAckSubmissionResponse") public class COREEnvelopeBatchResultsAckSubmissionResponse { @XmlElement(name = "PayloadType", required = true) protected String payloadType; @XmlElement(name = "ProcessingMode", required = true) protected String processingMode; @XmlElement(name = "PayloadID", required = true) protected String payloadID; @XmlElement(name = "PayloadLength") protected Integer payloadLength; @XmlElement(name = "TimeStamp", required = true) protected String timeStamp; @XmlElement(name = "SenderID", required = true) protected String senderID; @XmlElement(name = "ReceiverID", required = true) protected String receiverID; @XmlElement(name = "CORERuleVersion", required = true) protected String coreRuleVersion; @XmlElement(name = "CheckSum") protected String checkSum; @XmlElement(name = "Payload") @XmlMimeType("application/octet-stream") protected DataHandler payload; @XmlElement(name = "ErrorCode", required = true) protected String errorCode; @XmlElement(name = "ErrorMessage", required = true) protected String errorMessage; /** * Gets the value of the payloadType property. * * @return * possible object is * {@link String } * */ public String getPayloadType() { return payloadType; } /** * Sets the value of the payloadType property. * * @param value * allowed object is * {@link String } * */ public void setPayloadType(String value) { this.payloadType = value; } /** * Gets the value of the processingMode property. * * @return * possible object is * {@link String } * */ public String getProcessingMode() { return processingMode; } /** * Sets the value of the processingMode property. * * @param value * allowed object is * {@link String } * */ public void setProcessingMode(String value) { this.processingMode = value; } /** * Gets the value of the payloadID property. * * @return * possible object is * {@link String } * */ public String getPayloadID() { return payloadID; } /** * Sets the value of the payloadID property. * * @param value * allowed object is * {@link String } * */ public void setPayloadID(String value) { this.payloadID = value; } /** * Gets the value of the payloadLength property. * * @return * possible object is * {@link Integer } * */ public Integer getPayloadLength() { return payloadLength; } /** * Sets the value of the payloadLength property. * * @param value * allowed object is * {@link Integer } * */ public void setPayloadLength(Integer value) { this.payloadLength = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * {@link String } * */ public String getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * {@link String } * */ public void setTimeStamp(String value) { this.timeStamp = value; } /** * Gets the value of the senderID property. * * @return * possible object is * {@link String } * */ public String getSenderID() { return senderID; } /** * Sets the value of the senderID property. * * @param value * allowed object is * {@link String } * */ public void setSenderID(String value) { this.senderID = value; } /** * Gets the value of the receiverID property. * * @return * possible object is * {@link String } * */ public String getReceiverID() { return receiverID; } /** * Sets the value of the receiverID property. * * @param value * allowed object is * {@link String } * */ public void setReceiverID(String value) { this.receiverID = value; } /** * Gets the value of the coreRuleVersion property. * * @return * possible object is * {@link String } * */ public String getCORERuleVersion() { return coreRuleVersion; } /** * Sets the value of the coreRuleVersion property. * * @param value * allowed object is * {@link String } * */ public void setCORERuleVersion(String value) { this.coreRuleVersion = value; } /** * Gets the value of the checkSum property. * * @return * possible object is * {@link String } * */ public String getCheckSum() { return checkSum; } /** * Sets the value of the checkSum property. * * @param value * allowed object is * {@link String } * */ public void setCheckSum(String value) { this.checkSum = value; } /** * Gets the value of the payload property. * * @return * possible object is * {@link DataHandler } * */ public DataHandler getPayload() { return payload; } /** * Sets the value of the payload property. * * @param value * allowed object is * {@link DataHandler } * */ public void setPayload(DataHandler value) { this.payload = value; } /** * Gets the value of the errorCode property. * * @return * possible object is * {@link String } * */ public String getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * * @param value * allowed object is * {@link String } * */ public void setErrorCode(String value) { this.errorCode = value; } /** * Gets the value of the errorMessage property. * * @return * possible object is * {@link String } * */ public String getErrorMessage() { return errorMessage; } /** * Sets the value of the errorMessage property. * * @param value * allowed object is * {@link String } * */ public void setErrorMessage(String value) { this.errorMessage = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy