Class XmlConstraint
- java.lang.Object
-
- eu.europa.esig.dss.detailedreport.jaxb.XmlConstraint
-
- All Implemented Interfaces:
Serializable
public class XmlConstraint extends Object implements Serializable
Java class for Constraint complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Constraint"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Name" type="{http://dss.esig.europa.eu/validation/detailed-report}Name"/> <element name="Status" type="{http://dss.esig.europa.eu/validation/detailed-report}Status"/> <element name="Error" type="{http://dss.esig.europa.eu/validation/detailed-report}Name" minOccurs="0"/> <element name="Warning" type="{http://dss.esig.europa.eu/validation/detailed-report}Name" minOccurs="0"/> <element name="Info" type="{http://dss.esig.europa.eu/validation/detailed-report}Name" minOccurs="0"/> <element name="AdditionalInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XmlConstraint()
-
Method Summary
Modifier and Type Method Description StringgetAdditionalInfo()Gets the value of the additionalInfo property.XmlNamegetError()Gets the value of the error property.StringgetId()Gets the value of the id property.XmlNamegetInfo()Gets the value of the info property.XmlNamegetName()Gets the value of the name property.XmlStatusgetStatus()Gets the value of the status property.XmlNamegetWarning()Gets the value of the warning property.voidsetAdditionalInfo(String value)Sets the value of the additionalInfo property.voidsetError(XmlName value)Sets the value of the error property.voidsetId(String value)Sets the value of the id property.voidsetInfo(XmlName value)Sets the value of the info property.voidsetName(XmlName value)Sets the value of the name property.voidsetStatus(XmlStatus value)Sets the value of the status property.voidsetWarning(XmlName value)Sets the value of the warning property.
-
-
-
Method Detail
-
getName
public XmlName getName()
Gets the value of the name property.- Returns:
- possible object is
XmlName
-
setName
public void setName(XmlName value)
Sets the value of the name property.- Parameters:
value- allowed object isXmlName
-
getStatus
public XmlStatus getStatus()
Gets the value of the status property.- Returns:
- possible object is
XmlStatus
-
setStatus
public void setStatus(XmlStatus value)
Sets the value of the status property.- Parameters:
value- allowed object isXmlStatus
-
getError
public XmlName getError()
Gets the value of the error property.- Returns:
- possible object is
XmlName
-
setError
public void setError(XmlName value)
Sets the value of the error property.- Parameters:
value- allowed object isXmlName
-
getWarning
public XmlName getWarning()
Gets the value of the warning property.- Returns:
- possible object is
XmlName
-
setWarning
public void setWarning(XmlName value)
Sets the value of the warning property.- Parameters:
value- allowed object isXmlName
-
getInfo
public XmlName getInfo()
Gets the value of the info property.- Returns:
- possible object is
XmlName
-
setInfo
public void setInfo(XmlName value)
Sets the value of the info property.- Parameters:
value- allowed object isXmlName
-
getAdditionalInfo
public String getAdditionalInfo()
Gets the value of the additionalInfo property.- Returns:
- possible object is
String
-
setAdditionalInfo
public void setAdditionalInfo(String value)
Sets the value of the additionalInfo property.- Parameters:
value- allowed object isString
-
-