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 booleanequals(Object var0)abstract SetgetCriticalExtensionOIDs()abstract byte[]getEncoded()abstract byte[]getExtensionValue(String var0)abstract SetgetNonCriticalExtensionOIDs()abstract DategetRevocationDate()abstract BigIntegergetSerialNumber()abstract booleanhasExtensions()inthashCode()abstract booleanhasUnsupportedCriticalExtension()abstract StringtoString()
-
-
-
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:
hasUnsupportedCriticalExtensionin interfaceX509Extension
-
getCriticalExtensionOIDs
public abstract Set getCriticalExtensionOIDs()
- Specified by:
getCriticalExtensionOIDsin interfaceX509Extension
-
getNonCriticalExtensionOIDs
public abstract Set getNonCriticalExtensionOIDs()
- Specified by:
getNonCriticalExtensionOIDsin interfaceX509Extension
-
getExtensionValue
public abstract byte[] getExtensionValue(String var0)
- Specified by:
getExtensionValuein interfaceX509Extension
-
-