So, I am back with another question for you fellas. I have a JAXB object which I am marshalling/de-marshalling from an XML file.
The code is something like:
@XmlAccessorType(XmlAccessType.FIELD)
public class Line {
@XmlElement(required = true)
@Min(1)
private int quantity;
...
}
My XML structure is:
<line>
<quantity>2</quantity>
</line>
Now the Java code accepts this too:
<line>
<quantity>2</quantity>
<quantity>2</quantity>
</line>
So, how should I program my constraints in a way that I accept only first xml and not the second.
Thanks again!