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 BooleanattributePresentprotected XmlCertificatecertificateprotected BooleandigestValueMatchprotected BooleandigestValuePresentprotected BooleanissuerSerialMatchprotected byte[]publicKey
-
Constructor Summary
Constructors Constructor Description XmlSigningCertificate()
-
Method Summary
Modifier and Type Method Description XmlCertificategetCertificate()Gets the value of the certificate property.byte[]getPublicKey()Gets the value of the publicKey property.BooleanisAttributePresent()Gets the value of the attributePresent property.BooleanisDigestValueMatch()Gets the value of the digestValueMatch property.BooleanisDigestValuePresent()Gets the value of the digestValuePresent property.BooleanisIssuerSerialMatch()Gets the value of the issuerSerialMatch property.voidsetAttributePresent(Boolean value)Sets the value of the attributePresent property.voidsetCertificate(XmlCertificate value)Sets the value of the certificate property.voidsetDigestValueMatch(Boolean value)Sets the value of the digestValueMatch property.voidsetDigestValuePresent(Boolean value)Sets the value of the digestValuePresent property.voidsetIssuerSerialMatch(Boolean value)Sets the value of the issuerSerialMatch property.voidsetPublicKey(byte[] value)Sets the value of the publicKey property.
-
-
-
Field Detail
-
attributePresent
protected Boolean attributePresent
-
digestValuePresent
protected Boolean digestValuePresent
-
digestValueMatch
protected Boolean digestValueMatch
-
issuerSerialMatch
protected Boolean issuerSerialMatch
-
publicKey
protected byte[] publicKey
-
certificate
protected XmlCertificate certificate
-
-
Method Detail
-
isAttributePresent
public Boolean isAttributePresent()
Gets the value of the attributePresent property.- Returns:
- possible object is
Boolean
-
setAttributePresent
public void setAttributePresent(Boolean value)
Sets the value of the attributePresent property.- Parameters:
value- allowed object isBoolean
-
isDigestValuePresent
public Boolean isDigestValuePresent()
Gets the value of the digestValuePresent property.- Returns:
- possible object is
Boolean
-
setDigestValuePresent
public void setDigestValuePresent(Boolean value)
Sets the value of the digestValuePresent property.- Parameters:
value- allowed object isBoolean
-
isDigestValueMatch
public Boolean isDigestValueMatch()
Gets the value of the digestValueMatch property.- Returns:
- possible object is
Boolean
-
setDigestValueMatch
public void setDigestValueMatch(Boolean value)
Sets the value of the digestValueMatch property.- Parameters:
value- allowed object isBoolean
-
isIssuerSerialMatch
public Boolean isIssuerSerialMatch()
Gets the value of the issuerSerialMatch property.- Returns:
- possible object is
Boolean
-
setIssuerSerialMatch
public void setIssuerSerialMatch(Boolean value)
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
public XmlCertificate getCertificate()
Gets the value of the certificate property.- Returns:
- possible object is
Object
-
setCertificate
public void setCertificate(XmlCertificate value)
Sets the value of the certificate property.- Parameters:
value- allowed object isObject
-
-