GLS ShipIT  2.8.11
GLS ShipIT - REST services
Fields.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "Fields", propOrder = {
34  "name",
35  "value"
36 })
37 public class Fields {
38 
39  @XmlElement(required = true)
40  protected String name;
41  @XmlElement(required = true)
42  protected String value;
43 
52  public String getName() {
53  return name;
54  }
55 
64  public void setName(String value) {
65  this.name = value;
66  }
67 
76  public String getValue() {
77  return value;
78  }
79 
88  public void setValue(String value) {
89  this.value = value;
90  }
91 
92 }