GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/Information.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
33@XmlAccessorType(XmlAccessType.FIELD)
34@XmlType(name = "Information", propOrder = {
35 "name",
36 "value"
37})
38public 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}