| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
-
- 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;
-
-
- /**
- * <p>Java class for handlingReport complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <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>
- * </pre>
- *
- *
- */
- @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<String> 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the trackingIds property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getTrackingIds().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link String }
- *
- *
- */
- public List<String> getTrackingIds() {
- if (trackingIds == null) {
- trackingIds = new ArrayList<String>();
- }
- 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;
- }
-
- }
|