2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
4import java.util.ArrayList;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import 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;
void setLocation(String value)
void setRule(String value)
List< String > getParameters()