GLS ShipIT  2.8.11
GLS ShipIT - REST services
KeyValuePair.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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "KeyValuePair", propOrder = {
35  "key",
36  "value"
37 })
38 public class KeyValuePair {
39 
40  @XmlElement(required = true)
41  protected String key;
42  @XmlElement(required = true)
43  protected String value;
44 
53  public String getKey() {
54  return key;
55  }
56 
65  public void setKey(String value) {
66  this.key = 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 }