GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
InvalidFieldValueFault.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11 
12 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34  "field"
35 })
36 @XmlRootElement(name = "InvalidFieldValueFault")
37 public class InvalidFieldValueFault {
38 
39  @XmlElement(required = true)
40  protected List<Fields> field;
41 
64  public List<Fields> getField() {
65  if (field == null) {
66  field = new ArrayList<Fields>();
67  }
68  return this.field;
69  }
70 
71 }