GLS ShipIT  2.8.11
GLS ShipIT - REST services
Information.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.XmlType;
8 
9 
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "Information", propOrder = {
33  "name",
34  "value"
35 })
36 public class Information {
37 
38  @XmlElement(name = "Name")
39  protected String name;
40  @XmlElement(name = "Value")
41  protected String value;
42 
51  public String getName() {
52  return name;
53  }
54 
63  public void setName(String value) {
64  this.name = value;
65  }
66 
75  public String getValue() {
76  return value;
77  }
78 
87  public void setValue(String value) {
88  this.value = value;
89  }
90 
91 }