GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "success",
37  "validationResult"
38 })
39 @XmlRootElement(name = "ValidateParcelsResponse")
41 
42  protected boolean success;
43  @XmlElement(required = true)
44  protected ShipmentValidationResult validationResult;
45 
50  public boolean isSuccess() {
51  return success;
52  }
53 
58  public void setSuccess(boolean value) {
59  this.success = value;
60  }
61 
71  return validationResult;
72  }
73 
83  this.validationResult = value;
84  }
85 
86 }