Class Overview
Represents the Freshest CRL Extension.
The extension identifies how delta CRL information for a
complete CRL is obtained.
The extension is defined in Section 5.2.6 of
Internet X.509 PKI Certific
ate and Certificate Revocation List (CRL) Profile.
Its ASN.1 definition is as follows:
id-ce-freshestCRL OBJECT IDENTIFIER ::= { id-ce 46 }
FreshestCRL ::= CRLDistributionPoints
Summary
[Expand]
Inherited Methods |
From class
sun.security.x509.CRLDistributionPointsExtension
|
From class
sun.security.x509.Extension
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
final
void
|
wait(long timeout, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long timeout)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
|
From interface
sun.security.x509.CertAttrSet
abstract
void
|
delete(String name)
Deletes an attribute value from this CertAttrSet.
|
abstract
void
|
encode(OutputStream out)
Encodes the attribute to the output stream in a format
that can be parsed by the decode method.
|
abstract
Object
|
get(String name)
Gets an attribute value for this CertAttrSet.
|
abstract
Enumeration<T>
|
getElements()
Returns an enumeration of the names of the attributes existing within
this attribute.
|
abstract
String
|
getName()
Returns the name (identifier) of this CertAttrSet.
|
abstract
void
|
set(String name, Object obj)
Sets an attribute value within this CertAttrSet.
|
abstract
String
|
toString()
Returns a short string describing this certificate attribute.
|
|
Constants
public
static
final
String
NAME
Constant Value:
"FreshestCRL"
Public Constructors
public
FreshestCRLExtension
(List<DistributionPoint> distributionPoints)
Creates a freshest CRL extension.
The criticality is set to false.
Parameters
distributionPoints
| the list of delta CRL distribution points.
|
public
FreshestCRLExtension
(Boolean critical, Object value)
Creates the extension from the passed DER encoded value of the same.
Parameters
critical
| true if the extension is to be treated as critical. |
value
| an array of DER encoded bytes of the actual value. |
Public Methods
public
void
encode
(OutputStream out)
Writes the extension to the DerOutputStream.
Parameters
out
| the DerOutputStream to write the extension to. |