GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
Field.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 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "Field", propOrder = {
34  "name"
35 })
36 public 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 }