Class XmlSigningCertificate
java.lang.Object
eu.europa.esig.dss.diagnostic.jaxb.XmlSigningCertificate
- All Implemented Interfaces:
Serializable
public class XmlSigningCertificate extends Object implements Serializable
Java class for SigningCertificate complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SigningCertificate"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="AttributePresent" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="DigestValuePresent" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="DigestValueMatch" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="IssuerSerialMatch" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="PublicKey" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> </sequence> <attribute name="Certificate" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected Boolean
attributePresent
protected XmlCertificate
certificate
protected Boolean
digestValueMatch
protected Boolean
digestValuePresent
protected Boolean
issuerSerialMatch
protected byte[]
publicKey
-
Constructor Summary
Constructors Constructor Description XmlSigningCertificate()
-
Method Summary
Modifier and Type Method Description XmlCertificate
getCertificate()
Gets the value of the certificate property.byte[]
getPublicKey()
Gets the value of the publicKey property.Boolean
isAttributePresent()
Gets the value of the attributePresent property.Boolean
isDigestValueMatch()
Gets the value of the digestValueMatch property.Boolean
isDigestValuePresent()
Gets the value of the digestValuePresent property.Boolean
isIssuerSerialMatch()
Gets the value of the issuerSerialMatch property.void
setAttributePresent(Boolean value)
Sets the value of the attributePresent property.void
setCertificate(XmlCertificate value)
Sets the value of the certificate property.void
setDigestValueMatch(Boolean value)
Sets the value of the digestValueMatch property.void
setDigestValuePresent(Boolean value)
Sets the value of the digestValuePresent property.void
setIssuerSerialMatch(Boolean value)
Sets the value of the issuerSerialMatch property.void
setPublicKey(byte[] value)
Sets the value of the publicKey property.
-
Field Details
-
attributePresent
-
digestValuePresent
-
digestValueMatch
-
issuerSerialMatch
-
publicKey
protected byte[] publicKey -
certificate
-
-
Constructor Details
-
XmlSigningCertificate
public XmlSigningCertificate()
-
-
Method Details
-
isAttributePresent
Gets the value of the attributePresent property.- Returns:
- possible object is
Boolean
-
setAttributePresent
Sets the value of the attributePresent property.- Parameters:
value
- allowed object isBoolean
-
isDigestValuePresent
Gets the value of the digestValuePresent property.- Returns:
- possible object is
Boolean
-
setDigestValuePresent
Sets the value of the digestValuePresent property.- Parameters:
value
- allowed object isBoolean
-
isDigestValueMatch
Gets the value of the digestValueMatch property.- Returns:
- possible object is
Boolean
-
setDigestValueMatch
Sets the value of the digestValueMatch property.- Parameters:
value
- allowed object isBoolean
-
isIssuerSerialMatch
Gets the value of the issuerSerialMatch property.- Returns:
- possible object is
Boolean
-
setIssuerSerialMatch
Sets the value of the issuerSerialMatch property.- Parameters:
value
- allowed object isBoolean
-
getPublicKey
public byte[] getPublicKey()Gets the value of the publicKey property.- Returns:
- possible object is byte[]
-
setPublicKey
public void setPublicKey(byte[] value)Sets the value of the publicKey property.- Parameters:
value
- allowed object is byte[]
-
getCertificate
Gets the value of the certificate property.- Returns:
- possible object is
Object
-
setCertificate
Sets the value of the certificate property.- Parameters:
value
- allowed object isObject
-