Package be.recipe.services.core
Class ValidationReport
- java.lang.Object
-
- be.recipe.services.core.ValidationReport
-
public class ValidationReport extends Object
Java class for ValidationReport complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ValidationReport"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="violation" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="propertyPath" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="usecase" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="translations" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="message" type="{http:/services.recipe.be/core}LocalisedString" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </element> </all> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classValidationReport.ViolationJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<ValidationReport.Violation>violation
-
Constructor Summary
Constructors Constructor Description ValidationReport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ValidationReport.Violation>getViolation()Gets the value of the violation property.List<ValidationReport.Violation>getViolations()
-
-
-
Field Detail
-
violation
protected List<ValidationReport.Violation> violation
-
-
Method Detail
-
getViolation
public List<ValidationReport.Violation> getViolation()
Gets the value of the violation property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the violation property.For example, to add a new item, do as follows:
getViolation().add(newItem);Objects of the following type(s) are allowed in the list
ValidationReport.Violation
-
getViolations
public List<ValidationReport.Violation> getViolations()
-
-