Class XmlOrphanToken
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlAbstractToken
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlOrphanToken
-
- All Implemented Interfaces:
Serializable
public class XmlOrphanToken extends XmlAbstractToken implements Serializable
Java class for OrphanToken complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OrphanToken"> <complexContent> <extension base="{http://dss.esig.europa.eu/validation/diagnostic}AbstractToken"> <sequence> <element name="Type" type="{http://dss.esig.europa.eu/validation/diagnostic}OrphanTokenType"/> <choice> <element name="Base64Encoded" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> <element name="DigestAlgoAndValue" type="{http://dss.esig.europa.eu/validation/diagnostic}DigestAlgoAndValue"/> </choice> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]base64Encodedprotected XmlDigestAlgoAndValuedigestAlgoAndValueprotected OrphanTokenTypetype-
Fields inherited from class eu.europa.esig.dss.diagnostic.jaxb.XmlAbstractToken
id
-
-
Constructor Summary
Constructors Constructor Description XmlOrphanToken()
-
Method Summary
Modifier and Type Method Description byte[]getBase64Encoded()Gets the value of the base64Encoded property.XmlDigestAlgoAndValuegetDigestAlgoAndValue()Gets the value of the digestAlgoAndValue property.OrphanTokenTypegetType()Gets the value of the type property.voidsetBase64Encoded(byte[] value)Sets the value of the base64Encoded property.voidsetDigestAlgoAndValue(XmlDigestAlgoAndValue value)Sets the value of the digestAlgoAndValue property.voidsetType(OrphanTokenType value)Sets the value of the type property.-
Methods inherited from class eu.europa.esig.dss.diagnostic.jaxb.XmlAbstractToken
getId, setId
-
-
-
-
Field Detail
-
type
protected OrphanTokenType type
-
base64Encoded
protected byte[] base64Encoded
-
digestAlgoAndValue
protected XmlDigestAlgoAndValue digestAlgoAndValue
-
-
Method Detail
-
getType
public OrphanTokenType getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(OrphanTokenType value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getBase64Encoded
public byte[] getBase64Encoded()
Gets the value of the base64Encoded property.- Returns:
- possible object is byte[]
-
setBase64Encoded
public void setBase64Encoded(byte[] value)
Sets the value of the base64Encoded property.- Parameters:
value- allowed object is byte[]
-
getDigestAlgoAndValue
public XmlDigestAlgoAndValue getDigestAlgoAndValue()
Gets the value of the digestAlgoAndValue property.- Returns:
- possible object is
XmlDigestAlgoAndValue
-
setDigestAlgoAndValue
public void setDigestAlgoAndValue(XmlDigestAlgoAndValue value)
Sets the value of the digestAlgoAndValue property.- Parameters:
value- allowed object isXmlDigestAlgoAndValue
-
-