Class ValidationStatusType
- All Implemented Interfaces:
Serializable
public class ValidationStatusType extends Object implements Serializable
Java class for ValidationStatusType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ValidationStatusType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="MainIndication" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> <element name="SubIndication" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/> <element name="AssociatedValidationReportData" type="{http://uri.etsi.org/19102/v1.2.1#}ValidationReportDataType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected List<ValidationReportDataType>
associatedValidationReportData
protected Indication
mainIndication
protected List<SubIndication>
subIndication
-
Constructor Summary
Constructors Constructor Description ValidationStatusType()
-
Method Summary
Modifier and Type Method Description List<ValidationReportDataType>
getAssociatedValidationReportData()
Gets the value of the associatedValidationReportData property.Indication
getMainIndication()
Gets the value of the mainIndication property.List<SubIndication>
getSubIndication()
Gets the value of the subIndication property.void
setMainIndication(Indication value)
Sets the value of the mainIndication property.
-
Field Details
-
Constructor Details
-
ValidationStatusType
public ValidationStatusType()
-
-
Method Details
-
getMainIndication
Gets the value of the mainIndication property.- Returns:
- possible object is
String
-
setMainIndication
Sets the value of the mainIndication property.- Parameters:
value
- allowed object isString
-
getSubIndication
Gets the value of the subIndication 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
set
method for the subIndication property.For example, to add a new item, do as follows:
getSubIndication().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getAssociatedValidationReportData
Gets the value of the associatedValidationReportData 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
set
method for the associatedValidationReportData property.For example, to add a new item, do as follows:
getAssociatedValidationReportData().add(newItem);
Objects of the following type(s) are allowed in the list
ValidationReportDataType
-