package com.aggregator; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; import java.util.ArrayList; import java.util.List; /** *

Java class for handlingReport complex type. * *

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

 * <complexType name="handlingReport">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="completionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="trackingIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="unLocode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="voyageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "handlingReport", propOrder = { "completionTime", "trackingIds", "type", "unLocode", "voyageNumber" }) public class HandlingReport { @XmlElement(required = true) protected XMLGregorianCalendar completionTime; @XmlElement(required = true) protected List trackingIds; @XmlElement(required = true) protected String type; @XmlElement(required = true) protected String unLocode; protected String voyageNumber; /** * Gets the value of the completionTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCompletionTime() { return completionTime; } /** * Sets the value of the completionTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCompletionTime(XMLGregorianCalendar value) { this.completionTime = value; } /** * Gets the value of the trackingIds 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 trackingIds property. * *

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

     *    getTrackingIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getTrackingIds() { if (trackingIds == null) { trackingIds = new ArrayList(); } return this.trackingIds; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the unLocode property. * * @return * possible object is * {@link String } * */ public String getUnLocode() { return unLocode; } /** * Sets the value of the unLocode property. * * @param value * allowed object is * {@link String } * */ public void setUnLocode(String value) { this.unLocode = value; } /** * Gets the value of the voyageNumber property. * * @return * possible object is * {@link String } * */ public String getVoyageNumber() { return voyageNumber; } /** * Sets the value of the voyageNumber property. * * @param value * allowed object is * {@link String } * */ public void setVoyageNumber(String value) { this.voyageNumber = value; } }