java.lang.Object
hk.hku.cecid.phoenix.pki.CRLSource
hk.hku.cecid.phoenix.pki.CRLFileSource
- public class CRLFileSource
- extends CRLSource
This class extends CRLSource to add initialization procedure for loading a
file-based CRL.
- Version:
- $Revision: 1.5 $
|
Method Summary |
void |
init()
Initializes the object. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
crlFile
protected java.io.File crlFile
- The file holding the CRL
CRLFileSource
public CRLFileSource()
- Default constructor. It initializes the object. But the object
is still unusable until init() is called.
CRLFileSource
public CRLFileSource(java.lang.String crlFile)
- Constructor with the file name of the CRL passed in. It initializes
the object. But the object is still unusable until init() is called.
CRLFileSource
public CRLFileSource(java.io.File crlFile)
- Constructor with the file object holding the CRL passed in. It
initializes the object. But the object is still unusable until init()
is called.
init
public void init()
throws java.security.cert.CRLException
- Initializes the object. The CRL file is being loaded into the
internal CRL object.
- Specified by:
init in class CRLSource