2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
     4 import java.util.ArrayList;
     6 import javax.xml.bind.annotation.XmlAccessType;
     7 import javax.xml.bind.annotation.XmlAccessorType;
     8 import javax.xml.bind.annotation.XmlElement;
     9 import javax.xml.bind.annotation.XmlType;
    40 @XmlAccessorType(XmlAccessType.FIELD)
    41 @XmlType(name = 
"CreatedShipment", propOrder = {
    50     @XmlElement(name = 
"ShipmentReference")
    51     protected List<String> shipmentReference;
    54     @XmlElement(name = "PrintData")
    56     @XmlElement(name = "CustomerID", required = true)
    57     protected String customerID;
    58     @XmlElement(name = "PickupLocation", required = true)
    59     protected String pickupLocation;
    83     public List<String> getShipmentReference() {
    84         if (shipmentReference == null) {
    85             shipmentReference = 
new ArrayList<String>();
    87         return this.shipmentReference;
   113         if (parcelData == null) {
   114             parcelData = 
new ArrayList<ParcelData>();
   116         return this.parcelData;
   142         if (printData == null) {
   143             printData = 
new ArrayList<Document>();
   145         return this.printData;
   169         this.customerID = value;
   181         return pickupLocation;
   193         this.pickupLocation = value;
 
List< Document > getPrintData()
 
String getPickupLocation()
 
List< ParcelData > getParcelData()
 
void setPickupLocation(String value)
 
void setCustomerID(String value)