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