Class XmlCertificateRevocation
- java.lang.Object
-
- eu.europa.esig.dss.diagnostic.jaxb.XmlCertificateRevocation
-
- All Implemented Interfaces:
Serializable
public class XmlCertificateRevocation extends Object implements Serializable
Java class for CertificateRevocation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CertificateRevocation"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Status" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="Reason" type="{http://dss.esig.europa.eu/validation/diagnostic}RevocationReason" minOccurs="0"/> <element name="RevocationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> </sequence> <attribute name="Revocation" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected RevocationReasonreasonprotected XmlRevocationrevocationprotected DaterevocationDateprotected booleanstatus
-
Constructor Summary
Constructors Constructor Description XmlCertificateRevocation()
-
Method Summary
Modifier and Type Method Description RevocationReasongetReason()Gets the value of the reason property.XmlRevocationgetRevocation()Gets the value of the revocation property.DategetRevocationDate()Gets the value of the revocationDate property.booleanisStatus()Gets the value of the status property.voidsetReason(RevocationReason value)Sets the value of the reason property.voidsetRevocation(XmlRevocation value)Sets the value of the revocation property.voidsetRevocationDate(Date value)Sets the value of the revocationDate property.voidsetStatus(boolean value)Sets the value of the status property.
-
-
-
Field Detail
-
status
protected boolean status
-
reason
protected RevocationReason reason
-
revocationDate
protected Date revocationDate
-
revocation
protected XmlRevocation revocation
-
-
Method Detail
-
isStatus
public boolean isStatus()
Gets the value of the status property.
-
setStatus
public void setStatus(boolean value)
Sets the value of the status property.
-
getReason
public RevocationReason getReason()
Gets the value of the reason property.- Returns:
- possible object is
String
-
setReason
public void setReason(RevocationReason value)
Sets the value of the reason property.- Parameters:
value- allowed object isString
-
getRevocationDate
public Date getRevocationDate()
Gets the value of the revocationDate property.- Returns:
- possible object is
String
-
setRevocationDate
public void setRevocationDate(Date value)
Sets the value of the revocationDate property.- Parameters:
value- allowed object isString
-
getRevocation
public XmlRevocation getRevocation()
Gets the value of the revocation property.- Returns:
- possible object is
Object
-
setRevocation
public void setRevocation(XmlRevocation value)
Sets the value of the revocation property.- Parameters:
value- allowed object isObject
-
-