GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "Field", propOrder = {
32  "name"
33 })
34 public class Field {
35 
36  @XmlElement(required = true)
37  protected String name;
38 
47  public String getName() {
48  return name;
49  }
50 
59  public void setName(String value) {
60  this.name = value;
61  }
62 
63 }