Package | Description |
---|---|
com.netscape.certsrv.dbs.certdb |
Modifier and Type | Method and Description |
---|---|
ICertRecord |
ICertificateRepository.createCertRecord(java.math.BigInteger id,
java.security.cert.Certificate cert,
MetaInfo meta)
Creates certificate record.
|
ICertRecord |
ICertRecordList.getCertRecord(int index)
Gets one single record at a time similar to
processCertRecords but no extra class needed.
|
ICertRecord |
ICertificateRepository.readCertificateRecord(java.math.BigInteger serialNo)
Reads certificate from repository.
|
Modifier and Type | Method and Description |
---|---|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.findCertRecords(java.lang.String filter)
Finds all certificate records given a filter.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getAllRevokedCertificates()
Retrieves all revoked certificates including ones that have expired
or that are not yet valid.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getAllRevokedNonExpiredCertificates()
Retrieves all revoked but not expired certificates.
|
java.util.Enumeration<ICertRecord> |
ICertRecordList.getCertRecords(int startidx,
int endidx)
Retrieves requests.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getExpiredCertificates(java.lang.String from,
java.lang.String to)
Retrieves expired certificates.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getExpiredPublishedCertificates(java.lang.String from,
java.lang.String to)
Retrieves expired and published certificates.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getRevokedCertificates(java.util.Date asOfDate)
Retrieves all the revoked certificates that have not expired.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getRevokedCertificates(java.lang.String from,
java.lang.String to)
Retrieves revoked certificates.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getRevokedPublishedCertificates(java.lang.String from,
java.lang.String to)
Retrieves revoked and published certificates.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getValidCertificates(java.lang.String from,
java.lang.String to)
Retrieves valid certificates.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.getValidNotPublishedCertificates(java.lang.String from,
java.lang.String to)
Retrieves valid and not published certificates.
|
java.util.Enumeration<ICertRecord> |
ICertificateRepository.searchCertificates(java.lang.String filter,
int maxSize,
int timeLimit)
Finds a list of certificate records that satisifies
the filter.
|
Modifier and Type | Method and Description |
---|---|
void |
ICertificateRepository.addCertificateRecord(ICertRecord record)
Adds a certificate record to the repository.
|
void |
ICertificateRepository.markCertificateAsNotRenewable(ICertRecord record)
Marks certificate as not renewable.
|
void |
ICertificateRepository.markCertificateAsRenewable(ICertRecord record)
Marks certificate as renewable.
|