2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
 
    4 import java.util.ArrayList;
 
    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.XmlType;
 
   37 @XmlAccessorType(XmlAccessType.FIELD)
 
   38 @XmlType(name = 
"ValidationIssue", propOrder = {
 
   45     @XmlElement(name = 
"Rule", required = 
true)
 
   46     protected String rule;
 
   47     @XmlElement(name = "
Location", required = true)
 
   48     protected String location;
 
   49     @XmlElement(name = "Parameters")
 
   50     protected List<String> parameters;
 
   60     public String getRule() {
 
   97         this.location = value;
 
  123         if (parameters == null) {
 
  124             parameters = 
new ArrayList<String>();
 
  126         return this.parameters;