GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Fields.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
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "Fields", propOrder = {
36 "name",
37 "value"
38})
39public 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}
void setValue(String value)
Definition Fields.java:90