// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3-hudson-jaxb-ri-2.2.3-3- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.06.10 at 06:39:45 PM IST // package org.milyn.javabean.jaxb.model; 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.datatype.XMLGregorianCalendar; /** * A <b>Purchase Order</b> consists of addresses and items. * * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PurchaseOrderType", propOrder = { "shipTo", "billTo", "comment", "items" }) public class POType { @XmlElement(required = true) protected USAddress shipTo; @XmlElement(required = true) protected USAddress billTo; protected String comment; @XmlElement(required = true) protected Items items; @XmlAttribute(name = "orderDate") @XmlSchemaType(name = "date") protected XMLGregorianCalendar orderDate; /** * Gets the value of the shipTo property. * * @return * possible object is * {@link USAddress } * */ public USAddress getShipTo() { return shipTo; } /** * Sets the value of the shipTo property. * * @param value * allowed object is * {@link USAddress } * */ public void setShipTo(USAddress value) { this.shipTo = value; } /** * Gets the value of the billTo property. * * @return * possible object is * {@link USAddress } * */ public USAddress getBillTo() { return billTo; } /** * Sets the value of the billTo property. * * @param value * allowed object is * {@link USAddress } * */ public void setBillTo(USAddress value) { this.billTo = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the items property. * * @return * possible object is * {@link Items } * */ public Items getItems() { return items; } /** * Sets the value of the items property. * * @param value * allowed object is * {@link Items } * */ public void setItems(Items value) { this.items = value; } /** * Gets the value of the orderDate property. * * @return * possible object is * {@link javax.xml.datatype.XMLGregorianCalendar } * */ public XMLGregorianCalendar getOrderDate() { return orderDate; } /** * Sets the value of the orderDate property. * * @param value * allowed object is * {@link javax.xml.datatype.XMLGregorianCalendar } * */ public void setOrderDate(XMLGregorianCalendar value) { this.orderDate = value; } }