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