Package java.security.cert
Class X509CRLEntry
- java.lang.Object
-
- java.security.cert.X509CRLEntry
-
- All Implemented Interfaces:
X509Extension
public abstract class X509CRLEntry extends Object implements X509Extension
-
-
Constructor Summary
Constructors Constructor Description X509CRLEntry()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object var0)
abstract Set
getCriticalExtensionOIDs()
abstract byte[]
getEncoded()
abstract byte[]
getExtensionValue(String var0)
abstract Set
getNonCriticalExtensionOIDs()
abstract Date
getRevocationDate()
abstract BigInteger
getSerialNumber()
abstract boolean
hasExtensions()
int
hashCode()
abstract boolean
hasUnsupportedCriticalExtension()
abstract String
toString()
-
-
-
Method Detail
-
getEncoded
public abstract byte[] getEncoded() throws CRLException
- Throws:
CRLException
-
getSerialNumber
public abstract BigInteger getSerialNumber()
-
getRevocationDate
public abstract Date getRevocationDate()
-
hasExtensions
public abstract boolean hasExtensions()
-
hasUnsupportedCriticalExtension
public abstract boolean hasUnsupportedCriticalExtension()
- Specified by:
hasUnsupportedCriticalExtension
in interfaceX509Extension
-
getCriticalExtensionOIDs
public abstract Set getCriticalExtensionOIDs()
- Specified by:
getCriticalExtensionOIDs
in interfaceX509Extension
-
getNonCriticalExtensionOIDs
public abstract Set getNonCriticalExtensionOIDs()
- Specified by:
getNonCriticalExtensionOIDs
in interfaceX509Extension
-
getExtensionValue
public abstract byte[] getExtensionValue(String var0)
- Specified by:
getExtensionValue
in interfaceX509Extension
-
-