GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
KeyValuePair.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
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
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "KeyValuePair", propOrder = {
37 "key",
38 "value"
39})
40public 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}