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

it.bz.opendatahub.alpinebits.xml.schema.ota.OTAHotelRatePlanNotifRS Maven / Gradle / Ivy

There is a newer version: 3.0.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: 2020.10.22 at 07:23:30 PM GMT 
//


package it.bz.opendatahub.alpinebits.xml.schema.ota;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.time.ZonedDateTime;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import it.bz.opendatahub.alpinebits.xml.xmladapter.ZonedDateTimeAdapter;


/**
 * 

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">
 *       <choice>
 *         <sequence>
 *           <element name="Success" type="{http://www.opentravel.org/OTA/2003/05}SuccessType"/>
 *           <element name="Warnings" type="{http://www.opentravel.org/OTA/2003/05}WarningsType" minOccurs="0"/>
 *           <element name="RatePlanCrossRefs" minOccurs="0">
 *             <complexType>
 *               <complexContent>
 *                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   <sequence>
 *                     <element name="RatePlanCrossRef" maxOccurs="unbounded">
 *                       <complexType>
 *                         <complexContent>
 *                           <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                             <attribute name="RequestRatePlanCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
 *                             <attribute name="RequestRatePlanGroupingCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
 *                             <attribute name="ResponseRatePlanCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
 *                             <attribute name="ResponseRatePlanGroupingCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
 *                           </restriction>
 *                         </complexContent>
 *                       </complexType>
 *                     </element>
 *                   </sequence>
 *                 </restriction>
 *               </complexContent>
 *             </complexType>
 *           </element>
 *         </sequence>
 *         <element name="Errors" type="{http://www.opentravel.org/OTA/2003/05}ErrorsType"/>
 *       </choice>
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}OTA_PayloadStdAttributes"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "errors", "success", "warnings", "ratePlanCrossRefs" }) @XmlRootElement(name = "OTA_HotelRatePlanNotifRS") public class OTAHotelRatePlanNotifRS { @XmlElement(name = "Errors") protected ErrorsType errors; @XmlElement(name = "Success") protected SuccessType success; @XmlElement(name = "Warnings") protected WarningsType warnings; @XmlElement(name = "RatePlanCrossRefs") protected OTAHotelRatePlanNotifRS.RatePlanCrossRefs ratePlanCrossRefs; @XmlAttribute(name = "EchoToken") protected String echoToken; @XmlAttribute(name = "TimeStamp") @XmlJavaTypeAdapter(ZonedDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime timeStamp; @XmlAttribute(name = "Target") protected String target; @XmlAttribute(name = "TargetName") protected String targetName; @XmlAttribute(name = "Version", required = true) protected BigDecimal version; @XmlAttribute(name = "TransactionIdentifier") protected String transactionIdentifier; @XmlAttribute(name = "SequenceNmbr") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger sequenceNmbr; @XmlAttribute(name = "TransactionStatusCode") protected String transactionStatusCode; @XmlAttribute(name = "RetransmissionIndicator") protected Boolean retransmissionIndicator; @XmlAttribute(name = "CorrelationID") protected String correlationID; @XmlAttribute(name = "PrimaryLangID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String primaryLangID; @XmlAttribute(name = "AltLangID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String altLangID; /** * Gets the value of the errors property. * * @return * possible object is * {@link ErrorsType } * */ public ErrorsType getErrors() { return errors; } /** * Sets the value of the errors property. * * @param value * allowed object is * {@link ErrorsType } * */ public void setErrors(ErrorsType value) { this.errors = value; } /** * Gets the value of the success property. * * @return * possible object is * {@link SuccessType } * */ public SuccessType getSuccess() { return success; } /** * Sets the value of the success property. * * @param value * allowed object is * {@link SuccessType } * */ public void setSuccess(SuccessType value) { this.success = value; } /** * Gets the value of the warnings property. * * @return * possible object is * {@link WarningsType } * */ public WarningsType getWarnings() { return warnings; } /** * Sets the value of the warnings property. * * @param value * allowed object is * {@link WarningsType } * */ public void setWarnings(WarningsType value) { this.warnings = value; } /** * Gets the value of the ratePlanCrossRefs property. * * @return * possible object is * {@link OTAHotelRatePlanNotifRS.RatePlanCrossRefs } * */ public OTAHotelRatePlanNotifRS.RatePlanCrossRefs getRatePlanCrossRefs() { return ratePlanCrossRefs; } /** * Sets the value of the ratePlanCrossRefs property. * * @param value * allowed object is * {@link OTAHotelRatePlanNotifRS.RatePlanCrossRefs } * */ public void setRatePlanCrossRefs(OTAHotelRatePlanNotifRS.RatePlanCrossRefs value) { this.ratePlanCrossRefs = value; } /** * Gets the value of the echoToken property. * * @return * possible object is * {@link String } * */ public String getEchoToken() { return echoToken; } /** * Sets the value of the echoToken property. * * @param value * allowed object is * {@link String } * */ public void setEchoToken(String value) { this.echoToken = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * {@link String } * */ public void setTimeStamp(ZonedDateTime value) { this.timeStamp = value; } /** * Gets the value of the target property. * * @return * possible object is * {@link String } * */ public String getTarget() { return target; } /** * Sets the value of the target property. * * @param value * allowed object is * {@link String } * */ public void setTarget(String value) { this.target = value; } /** * Gets the value of the targetName property. * * @return * possible object is * {@link String } * */ public String getTargetName() { return targetName; } /** * Sets the value of the targetName property. * * @param value * allowed object is * {@link String } * */ public void setTargetName(String value) { this.targetName = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setVersion(BigDecimal value) { this.version = value; } /** * Gets the value of the transactionIdentifier property. * * @return * possible object is * {@link String } * */ public String getTransactionIdentifier() { return transactionIdentifier; } /** * Sets the value of the transactionIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setTransactionIdentifier(String value) { this.transactionIdentifier = value; } /** * Gets the value of the sequenceNmbr property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSequenceNmbr() { return sequenceNmbr; } /** * Sets the value of the sequenceNmbr property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSequenceNmbr(BigInteger value) { this.sequenceNmbr = value; } /** * Gets the value of the transactionStatusCode property. * * @return * possible object is * {@link String } * */ public String getTransactionStatusCode() { return transactionStatusCode; } /** * Sets the value of the transactionStatusCode property. * * @param value * allowed object is * {@link String } * */ public void setTransactionStatusCode(String value) { this.transactionStatusCode = value; } /** * Gets the value of the retransmissionIndicator property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRetransmissionIndicator() { return retransmissionIndicator; } /** * Sets the value of the retransmissionIndicator property. * * @param value * allowed object is * {@link Boolean } * */ public void setRetransmissionIndicator(Boolean value) { this.retransmissionIndicator = value; } /** * Gets the value of the correlationID property. * * @return * possible object is * {@link String } * */ public String getCorrelationID() { return correlationID; } /** * Sets the value of the correlationID property. * * @param value * allowed object is * {@link String } * */ public void setCorrelationID(String value) { this.correlationID = value; } /** * Gets the value of the primaryLangID property. * * @return * possible object is * {@link String } * */ public String getPrimaryLangID() { return primaryLangID; } /** * Sets the value of the primaryLangID property. * * @param value * allowed object is * {@link String } * */ public void setPrimaryLangID(String value) { this.primaryLangID = value; } /** * Gets the value of the altLangID property. * * @return * possible object is * {@link String } * */ public String getAltLangID() { return altLangID; } /** * Sets the value of the altLangID property. * * @param value * allowed object is * {@link String } * */ public void setAltLangID(String value) { this.altLangID = value; } /** *

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="RatePlanCrossRef" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <attribute name="RequestRatePlanCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
     *                 <attribute name="RequestRatePlanGroupingCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
     *                 <attribute name="ResponseRatePlanCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
     *                 <attribute name="ResponseRatePlanGroupingCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ratePlanCrossReves" }) public static class RatePlanCrossRefs { @XmlElement(name = "RatePlanCrossRef", required = true) protected List ratePlanCrossReves; /** * Gets the value of the ratePlanCrossReves property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the ratePlanCrossReves property. * *

* For example, to add a new item, do as follows: *

         *    getRatePlanCrossReves().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OTAHotelRatePlanNotifRS.RatePlanCrossRefs.RatePlanCrossRef } * * */ public List getRatePlanCrossReves() { if (ratePlanCrossReves == null) { ratePlanCrossReves = new ArrayList(); } return this.ratePlanCrossReves; } /** *

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">
         *       <attribute name="RequestRatePlanCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
         *       <attribute name="RequestRatePlanGroupingCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
         *       <attribute name="ResponseRatePlanCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
         *       <attribute name="ResponseRatePlanGroupingCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class RatePlanCrossRef { @XmlAttribute(name = "RequestRatePlanCode") protected String requestRatePlanCode; @XmlAttribute(name = "RequestRatePlanGroupingCode") protected String requestRatePlanGroupingCode; @XmlAttribute(name = "ResponseRatePlanCode") protected String responseRatePlanCode; @XmlAttribute(name = "ResponseRatePlanGroupingCode") protected String responseRatePlanGroupingCode; /** * Gets the value of the requestRatePlanCode property. * * @return * possible object is * {@link String } * */ public String getRequestRatePlanCode() { return requestRatePlanCode; } /** * Sets the value of the requestRatePlanCode property. * * @param value * allowed object is * {@link String } * */ public void setRequestRatePlanCode(String value) { this.requestRatePlanCode = value; } /** * Gets the value of the requestRatePlanGroupingCode property. * * @return * possible object is * {@link String } * */ public String getRequestRatePlanGroupingCode() { return requestRatePlanGroupingCode; } /** * Sets the value of the requestRatePlanGroupingCode property. * * @param value * allowed object is * {@link String } * */ public void setRequestRatePlanGroupingCode(String value) { this.requestRatePlanGroupingCode = value; } /** * Gets the value of the responseRatePlanCode property. * * @return * possible object is * {@link String } * */ public String getResponseRatePlanCode() { return responseRatePlanCode; } /** * Sets the value of the responseRatePlanCode property. * * @param value * allowed object is * {@link String } * */ public void setResponseRatePlanCode(String value) { this.responseRatePlanCode = value; } /** * Gets the value of the responseRatePlanGroupingCode property. * * @return * possible object is * {@link String } * */ public String getResponseRatePlanGroupingCode() { return responseRatePlanGroupingCode; } /** * Sets the value of the responseRatePlanGroupingCode property. * * @param value * allowed object is * {@link String } * */ public void setResponseRatePlanGroupingCode(String value) { this.responseRatePlanGroupingCode = value; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy