GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ValidateParcelsResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "", propOrder = {
38  "success",
39  "validationResult"
40 })
41 @XmlRootElement(name = "ValidateParcelsResponse")
43 
44  protected boolean success;
45  @XmlElement(required = true)
46  protected ShipmentValidationResult validationResult;
47 
52  public boolean isSuccess() {
53  return success;
54  }
55 
60  public void setSuccess(boolean value) {
61  this.success = value;
62  }
63 
73  return validationResult;
74  }
75 
85  this.validationResult = value;
86  }
87 
88 }