Class XmlDigestAlgoAndValue
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlDigestAlgoAndValue
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XmlDigestMatcher
public class XmlDigestAlgoAndValue extends Object implements Serializable
Java class for DigestAlgoAndValue complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DigestAlgoAndValue"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="DigestMethod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="DigestValue" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected DigestAlgorithmdigestMethodprotected byte[]digestValue
-
Constructor Summary
Constructors Constructor Description XmlDigestAlgoAndValue()
-
Method Summary
Modifier and Type Method Description DigestAlgorithmgetDigestMethod()Gets the value of the digestMethod property.byte[]getDigestValue()Gets the value of the digestValue property.voidsetDigestMethod(DigestAlgorithm value)Sets the value of the digestMethod property.voidsetDigestValue(byte[] value)Sets the value of the digestValue property.
-
-
-
Field Detail
-
digestMethod
protected DigestAlgorithm digestMethod
-
digestValue
protected byte[] digestValue
-
-
Method Detail
-
getDigestMethod
public DigestAlgorithm getDigestMethod()
Gets the value of the digestMethod property.- Returns:
- possible object is
String
-
setDigestMethod
public void setDigestMethod(DigestAlgorithm value)
Sets the value of the digestMethod property.- Parameters:
value- allowed object isString
-
getDigestValue
public byte[] getDigestValue()
Gets the value of the digestValue property.- Returns:
- possible object is byte[]
-
setDigestValue
public void setDigestValue(byte[] value)
Sets the value of the digestValue property.- Parameters:
value- allowed object is byte[]
-
-