GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Field.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
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "Field", propOrder = {
34 "name"
35})
36public class Field {
37
38 @XmlElement(required = true)
39 protected String name;
40
49 public String getName() {
50 return name;
51 }
52
61 public void setName(String value) {
62 this.name = value;
63 }
64
65}
void setName(String value)
Definition Field.java:61