Class XmlSignerData
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlAbstractToken
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlSignerData
-
- All Implemented Interfaces:
Serializable
public class XmlSignerData extends XmlAbstractToken implements Serializable
Java class for SignerData complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SignerData"> <complexContent> <extension base="{http://dss.esig.europa.eu/validation/diagnostic}AbstractToken"> <sequence> <element name="ReferencedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="DigestAlgoAndValue" type="{http://dss.esig.europa.eu/validation/diagnostic}DigestAlgoAndValue"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected XmlDigestAlgoAndValuedigestAlgoAndValueprotected StringreferencedName-
Fields inherited from class eu.europa.esig.dss.diagnostic.jaxb.XmlAbstractToken
id
-
-
Constructor Summary
Constructors Constructor Description XmlSignerData()
-
Method Summary
Modifier and Type Method Description XmlDigestAlgoAndValuegetDigestAlgoAndValue()Gets the value of the digestAlgoAndValue property.StringgetReferencedName()Gets the value of the referencedName property.voidsetDigestAlgoAndValue(XmlDigestAlgoAndValue value)Sets the value of the digestAlgoAndValue property.voidsetReferencedName(String value)Sets the value of the referencedName property.-
Methods inherited from class eu.europa.esig.dss.diagnostic.jaxb.XmlAbstractToken
getId, setId
-
-
-
-
Field Detail
-
referencedName
protected String referencedName
-
digestAlgoAndValue
protected XmlDigestAlgoAndValue digestAlgoAndValue
-
-
Method Detail
-
getReferencedName
public String getReferencedName()
Gets the value of the referencedName property.- Returns:
- possible object is
String
-
setReferencedName
public void setReferencedName(String value)
Sets the value of the referencedName property.- Parameters:
value- allowed object isString
-
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
-
-