GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "Information", propOrder = {
35  "name",
36  "value"
37 })
38 public class Information {
39 
40  @XmlElement(name = "Name")
41  protected String name;
42  @XmlElement(name = "Value")
43  protected String value;
44 
53  public String getName() {
54  return name;
55  }
56 
65  public void setName(String value) {
66  this.name = value;
67  }
68 
77  public String getValue() {
78  return value;
79  }
80 
89  public void setValue(String value) {
90  this.value = value;
91  }
92 
93 }