Class XmlToken
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XmlSignature,XmlTimestamp
public abstract class XmlToken extends Object implements Serializable
Java class for Token complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Token">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Filename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="CertificateChain" type="{http://dss.esig.europa.eu/validation/simple-report}CertificateChain" minOccurs="0"/>
<element name="Indication" type="{http://dss.esig.europa.eu/validation/simple-report}Indication"/>
<element name="SubIndication" type="{http://dss.esig.europa.eu/validation/simple-report}SubIndication" minOccurs="0"/>
<element name="Errors" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="Warnings" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="Infos" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected XmlCertificateChaincertificateChainprotected List<String>errorsprotected Stringfilenameprotected Stringidprotected Indicationindicationprotected List<String>infosprotected SubIndicationsubIndicationprotected List<String>warnings -
Constructor Summary
Constructors Constructor Description XmlToken() -
Method Summary
Modifier and Type Method Description XmlCertificateChaingetCertificateChain()Gets the value of the certificateChain property.List<String>getErrors()Gets the value of the errors property.StringgetFilename()Gets the value of the filename property.StringgetId()Gets the value of the id property.IndicationgetIndication()Gets the value of the indication property.List<String>getInfos()Gets the value of the infos property.SubIndicationgetSubIndication()Gets the value of the subIndication property.List<String>getWarnings()Gets the value of the warnings property.voidsetCertificateChain(XmlCertificateChain value)Sets the value of the certificateChain property.voidsetFilename(String value)Sets the value of the filename property.voidsetId(String value)Sets the value of the id property.voidsetIndication(Indication value)Sets the value of the indication property.voidsetSubIndication(SubIndication value)Sets the value of the subIndication property.
-
Field Details
-
Constructor Details
-
XmlToken
public XmlToken()
-
-
Method Details
-
getFilename
Gets the value of the filename property.- Returns:
- possible object is
String
-
setFilename
Sets the value of the filename property.- Parameters:
value- allowed object isString
-
getCertificateChain
Gets the value of the certificateChain property.- Returns:
- possible object is
XmlCertificateChain
-
setCertificateChain
Sets the value of the certificateChain property.- Parameters:
value- allowed object isXmlCertificateChain
-
getIndication
Gets the value of the indication property.- Returns:
- possible object is
String
-
setIndication
Sets the value of the indication property.- Parameters:
value- allowed object isString
-
getSubIndication
Gets the value of the subIndication property.- Returns:
- possible object is
String
-
setSubIndication
Sets the value of the subIndication property.- Parameters:
value- allowed object isString
-
getErrors
Gets the value of the errors 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 errors property.For example, to add a new item, do as follows:
getErrors().add(newItem);Objects of the following type(s) are allowed in the list
String -
getWarnings
Gets the value of the warnings 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 warnings property.For example, to add a new item, do as follows:
getWarnings().add(newItem);Objects of the following type(s) are allowed in the list
String -
getInfos
Gets the value of the infos 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 infos property.For example, to add a new item, do as follows:
getInfos().add(newItem);Objects of the following type(s) are allowed in the list
String -
getId
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
Sets the value of the id property.- Parameters:
value- allowed object isString
-