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

net.sourceforge.ota_tools.jaxb.ota2010a.ping.OrdersType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.12.31 at 04:22:27 PM PST 
//


package net.sourceforge.ota_tools.jaxb.ota2010a.ping;

import java.math.BigDecimal;
import java.math.BigInteger;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Provides the details of one or more orders.
 * 
 * 

Java class for OrdersType complex type. * *

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

 * <complexType name="OrdersType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Order" maxOccurs="99" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Products" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="Product" maxOccurs="99" minOccurs="0">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <attGroup ref="{http://www.opentravel.org/OTA/2003/05}CurrencyAmountGroup"/>
 *                                     <attribute name="ProductIssueDate" type="{http://www.opentravel.org/OTA/2003/05}DateOrDateTimeType" />
 *                                     <attribute name="ProductID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
 *                                     <attribute name="ProductType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
 *                                     <attribute name="ProductQuantity" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *                                     <attribute name="ProductSerialNumber" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
 *                                     <attribute name="DiscountCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
 *                                     <attribute name="Status">
 *                                       <simpleType>
 *                                         <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
 *                                           <enumeration value="OrderPending"/>
 *                                           <enumeration value="BackOrder"/>
 *                                           <enumeration value="Unavailable"/>
 *                                           <enumeration value="Confirmed"/>
 *                                         </restriction>
 *                                       </simpleType>
 *                                     </attribute>
 *                                     <attribute name="ListOfRecipientRPH" type="{http://www.opentravel.org/OTA/2003/05}ListOfRPH" />
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *                 <attribute name="OrderType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
 *                 <attribute name="OrderID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
 *                 <attribute name="ListOfRecipientRPH" type="{http://www.opentravel.org/OTA/2003/05}ListOfRPH" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="OrderType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
 *       <attribute name="DiscountCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
 *       <attribute name="VendorPurchaseOrderID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
 *       <attribute name="OrderID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OrdersType", propOrder = { "order" }) public class OrdersType { @XmlElement(name = "Order") protected List order; @XmlAttribute(name = "OrderType") protected String orderType; @XmlAttribute(name = "DiscountCode") protected String discountCode; @XmlAttribute(name = "VendorPurchaseOrderID") protected String vendorPurchaseOrderID; @XmlAttribute(name = "OrderID") protected String orderID; /** * Gets the value of the order 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 order property. * *

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

     *    getOrder().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OrdersType.Order } * * */ public List getOrder() { if (order == null) { order = new ArrayList(); } return this.order; } /** * Gets the value of the orderType property. * * @return * possible object is * {@link String } * */ public String getOrderType() { return orderType; } /** * Sets the value of the orderType property. * * @param value * allowed object is * {@link String } * */ public void setOrderType(String value) { this.orderType = value; } /** * Gets the value of the discountCode property. * * @return * possible object is * {@link String } * */ public String getDiscountCode() { return discountCode; } /** * Sets the value of the discountCode property. * * @param value * allowed object is * {@link String } * */ public void setDiscountCode(String value) { this.discountCode = value; } /** * Gets the value of the vendorPurchaseOrderID property. * * @return * possible object is * {@link String } * */ public String getVendorPurchaseOrderID() { return vendorPurchaseOrderID; } /** * Sets the value of the vendorPurchaseOrderID property. * * @param value * allowed object is * {@link String } * */ public void setVendorPurchaseOrderID(String value) { this.vendorPurchaseOrderID = value; } /** * Gets the value of the orderID property. * * @return * possible object is * {@link String } * */ public String getOrderID() { return orderID; } /** * Sets the value of the orderID property. * * @param value * allowed object is * {@link String } * */ public void setOrderID(String value) { this.orderID = 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="Products" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="Product" maxOccurs="99" minOccurs="0">
     *                     <complexType>
     *                       <complexContent>
     *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                           <attGroup ref="{http://www.opentravel.org/OTA/2003/05}CurrencyAmountGroup"/>
     *                           <attribute name="ProductIssueDate" type="{http://www.opentravel.org/OTA/2003/05}DateOrDateTimeType" />
     *                           <attribute name="ProductID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
     *                           <attribute name="ProductType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
     *                           <attribute name="ProductQuantity" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
     *                           <attribute name="ProductSerialNumber" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
     *                           <attribute name="DiscountCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
     *                           <attribute name="Status">
     *                             <simpleType>
     *                               <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
     *                                 <enumeration value="OrderPending"/>
     *                                 <enumeration value="BackOrder"/>
     *                                 <enumeration value="Unavailable"/>
     *                                 <enumeration value="Confirmed"/>
     *                               </restriction>
     *                             </simpleType>
     *                           </attribute>
     *                           <attribute name="ListOfRecipientRPH" type="{http://www.opentravel.org/OTA/2003/05}ListOfRPH" />
     *                         </restriction>
     *                       </complexContent>
     *                     </complexType>
     *                   </element>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *       <attribute name="OrderType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
     *       <attribute name="OrderID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
     *       <attribute name="ListOfRecipientRPH" type="{http://www.opentravel.org/OTA/2003/05}ListOfRPH" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "products" }) public static class Order { @XmlElement(name = "Products") protected OrdersType.Order.Products products; @XmlAttribute(name = "OrderType") protected String orderType; @XmlAttribute(name = "OrderID") protected String orderID; @XmlAttribute(name = "ListOfRecipientRPH") protected List listOfRecipientRPH; /** * Gets the value of the products property. * * @return * possible object is * {@link OrdersType.Order.Products } * */ public OrdersType.Order.Products getProducts() { return products; } /** * Sets the value of the products property. * * @param value * allowed object is * {@link OrdersType.Order.Products } * */ public void setProducts(OrdersType.Order.Products value) { this.products = value; } /** * Gets the value of the orderType property. * * @return * possible object is * {@link String } * */ public String getOrderType() { return orderType; } /** * Sets the value of the orderType property. * * @param value * allowed object is * {@link String } * */ public void setOrderType(String value) { this.orderType = value; } /** * Gets the value of the orderID property. * * @return * possible object is * {@link String } * */ public String getOrderID() { return orderID; } /** * Sets the value of the orderID property. * * @param value * allowed object is * {@link String } * */ public void setOrderID(String value) { this.orderID = value; } /** * Gets the value of the listOfRecipientRPH 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 listOfRecipientRPH property. * *

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

         *    getListOfRecipientRPH().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getListOfRecipientRPH() { if (listOfRecipientRPH == null) { listOfRecipientRPH = new ArrayList(); } return this.listOfRecipientRPH; } /** *

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="Product" maxOccurs="99" minOccurs="0">
         *           <complexType>
         *             <complexContent>
         *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *                 <attGroup ref="{http://www.opentravel.org/OTA/2003/05}CurrencyAmountGroup"/>
         *                 <attribute name="ProductIssueDate" type="{http://www.opentravel.org/OTA/2003/05}DateOrDateTimeType" />
         *                 <attribute name="ProductID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
         *                 <attribute name="ProductType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
         *                 <attribute name="ProductQuantity" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
         *                 <attribute name="ProductSerialNumber" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
         *                 <attribute name="DiscountCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
         *                 <attribute name="Status">
         *                   <simpleType>
         *                     <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
         *                       <enumeration value="OrderPending"/>
         *                       <enumeration value="BackOrder"/>
         *                       <enumeration value="Unavailable"/>
         *                       <enumeration value="Confirmed"/>
         *                     </restriction>
         *                   </simpleType>
         *                 </attribute>
         *                 <attribute name="ListOfRecipientRPH" type="{http://www.opentravel.org/OTA/2003/05}ListOfRPH" />
         *               </restriction>
         *             </complexContent>
         *           </complexType>
         *         </element>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "product" }) public static class Products { @XmlElement(name = "Product") protected List product; /** * Gets the value of the product 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 product property. * *

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

             *    getProduct().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OrdersType.Order.Products.Product } * * */ public List getProduct() { if (product == null) { product = new ArrayList(); } return this.product; } /** *

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">
             *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}CurrencyAmountGroup"/>
             *       <attribute name="ProductIssueDate" type="{http://www.opentravel.org/OTA/2003/05}DateOrDateTimeType" />
             *       <attribute name="ProductID" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
             *       <attribute name="ProductType" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to64" />
             *       <attribute name="ProductQuantity" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
             *       <attribute name="ProductSerialNumber" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to32" />
             *       <attribute name="DiscountCode" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
             *       <attribute name="Status">
             *         <simpleType>
             *           <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
             *             <enumeration value="OrderPending"/>
             *             <enumeration value="BackOrder"/>
             *             <enumeration value="Unavailable"/>
             *             <enumeration value="Confirmed"/>
             *           </restriction>
             *         </simpleType>
             *       </attribute>
             *       <attribute name="ListOfRecipientRPH" type="{http://www.opentravel.org/OTA/2003/05}ListOfRPH" />
             *     </restriction>
             *   </complexContent>
             * </complexType>
             * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Product { @XmlAttribute(name = "ProductIssueDate") protected String productIssueDate; @XmlAttribute(name = "ProductID") protected String productID; @XmlAttribute(name = "ProductType") protected String productType; @XmlAttribute(name = "ProductQuantity") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger productQuantity; @XmlAttribute(name = "ProductSerialNumber") protected String productSerialNumber; @XmlAttribute(name = "DiscountCode") protected String discountCode; @XmlAttribute(name = "Status") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String status; @XmlAttribute(name = "ListOfRecipientRPH") protected List listOfRecipientRPH; @XmlAttribute(name = "Amount") protected BigDecimal amount; @XmlAttribute(name = "CurrencyCode") protected String currencyCode; @XmlAttribute(name = "DecimalPlaces") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger decimalPlaces; /** * Gets the value of the productIssueDate property. * * @return * possible object is * {@link String } * */ public String getProductIssueDate() { return productIssueDate; } /** * Sets the value of the productIssueDate property. * * @param value * allowed object is * {@link String } * */ public void setProductIssueDate(String value) { this.productIssueDate = value; } /** * Gets the value of the productID property. * * @return * possible object is * {@link String } * */ public String getProductID() { return productID; } /** * Sets the value of the productID property. * * @param value * allowed object is * {@link String } * */ public void setProductID(String value) { this.productID = value; } /** * Gets the value of the productType property. * * @return * possible object is * {@link String } * */ public String getProductType() { return productType; } /** * Sets the value of the productType property. * * @param value * allowed object is * {@link String } * */ public void setProductType(String value) { this.productType = value; } /** * Gets the value of the productQuantity property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getProductQuantity() { return productQuantity; } /** * Sets the value of the productQuantity property. * * @param value * allowed object is * {@link BigInteger } * */ public void setProductQuantity(BigInteger value) { this.productQuantity = value; } /** * Gets the value of the productSerialNumber property. * * @return * possible object is * {@link String } * */ public String getProductSerialNumber() { return productSerialNumber; } /** * Sets the value of the productSerialNumber property. * * @param value * allowed object is * {@link String } * */ public void setProductSerialNumber(String value) { this.productSerialNumber = value; } /** * Gets the value of the discountCode property. * * @return * possible object is * {@link String } * */ public String getDiscountCode() { return discountCode; } /** * Sets the value of the discountCode property. * * @param value * allowed object is * {@link String } * */ public void setDiscountCode(String value) { this.discountCode = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the listOfRecipientRPH 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 listOfRecipientRPH property. * *

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

                 *    getListOfRecipientRPH().add(newItem);
                 * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getListOfRecipientRPH() { if (listOfRecipientRPH == null) { listOfRecipientRPH = new ArrayList(); } return this.listOfRecipientRPH; } /** * Gets the value of the amount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAmount(BigDecimal value) { this.amount = value; } /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link String } * */ public String getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link String } * */ public void setCurrencyCode(String value) { this.currencyCode = value; } /** * Gets the value of the decimalPlaces property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDecimalPlaces() { return decimalPlaces; } /** * Sets the value of the decimalPlaces property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDecimalPlaces(BigInteger value) { this.decimalPlaces = value; } } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy