public class CRLData extends Object
CRLManager.getCRLs(X509Certificate)| Constructor and Description |
|---|
CRLData(X509CRL crl,
URI uri)
Creates a new CRLData object with the given CRL and associated URI.
|
| Modifier and Type | Method and Description |
|---|---|
X509CRL |
getCRL()
Returns the CRL represented by this CRLData.
|
URI |
getURI()
Returns the URI associated with the CRL represented by this CRLData.
|
void |
setCRL(X509CRL crl)
Sets the CRL to be represented by this CRLData.
|
void |
setURI(URI uri)
Sets the URI to be associated with the CRL represented by this CRLData.
|
void |
writeCRL(OutputStream out)
Write CRL data to the given OutputStream.
|
public X509CRL getCRL()
public void setCRL(X509CRL crl)
crl - X.509 CRL.public URI getURI()
public void setURI(URI uri)
uri - associated URI.public void writeCRL(OutputStream out) throws IOException
out - an OutputStream where CRL data should be written.IOException - if CRL data cannot be written.