Uses of Interface
com.netscape.certsrv.dbs.keydb.IKeyRecord
-
Packages that use IKeyRecord Package Description com.netscape.certsrv.dbs.keydb com.netscape.cms.servlet.key com.netscape.cmscore.dbs -
-
Uses of IKeyRecord in com.netscape.certsrv.dbs.keydb
Methods in com.netscape.certsrv.dbs.keydb that return IKeyRecord Modifier and Type Method Description IKeyRecord
IKeyRepository. readKeyRecord(java.lang.String cert)
Reads an archived key by b64 encoded cert.IKeyRecord
IKeyRepository. readKeyRecord(java.math.BigInteger serialNo)
Reads an archived key by serial number.IKeyRecord
IKeyRepository. readKeyRecord(java.security.PublicKey publicKey)
Reads archived key using public key.IKeyRecord
IKeyRepository. readKeyRecord(org.mozilla.jss.netscape.security.x509.X500Name ownerName)
Reads an archived key by owner name.Methods in com.netscape.certsrv.dbs.keydb that return types with arguments of type IKeyRecord Modifier and Type Method Description java.util.Enumeration<IKeyRecord>
IKeyRecordList. getKeyRecords(int startidx, int endidx)
Retrieves key records.java.util.Enumeration<IKeyRecord>
IKeyRepository. searchKeys(java.lang.String filter, int maxSize)
Searches for private keys.java.util.Enumeration<IKeyRecord>
IKeyRepository. searchKeys(java.lang.String filter, int maxSize, int timeLimt)
Searches for private keys.Methods in com.netscape.certsrv.dbs.keydb with parameters of type IKeyRecord Modifier and Type Method Description void
IKeyRepository. addKeyRecord(IKeyRecord record)
Archives a key to the repository. -
Uses of IKeyRecord in com.netscape.cms.servlet.key
Methods in com.netscape.cms.servlet.key with parameters of type IKeyRecord Modifier and Type Method Description static void
KeyRecordParser. fillRecordIntoArg(IKeyRecord rec, IArgBlock rarg)
Fills key record into argument block. -
Uses of IKeyRecord in com.netscape.cmscore.dbs
Classes in com.netscape.cmscore.dbs that implement IKeyRecord Modifier and Type Class Description class
KeyRecord
A class represents a Key record.Methods in com.netscape.cmscore.dbs that return IKeyRecord Modifier and Type Method Description IKeyRecord
KeyRecordList. getKeyRecord(int i)
IKeyRecord
KeyRepository. readKeyRecord(java.lang.String cert)
Recovers archived key using b64 encoded certIKeyRecord
KeyRepository. readKeyRecord(java.math.BigInteger serialNo)
Recovers an archived key by serial number.IKeyRecord
KeyRepository. readKeyRecord(java.security.PublicKey publicKey)
Recovers archived key using public key.IKeyRecord
KeyRepository. readKeyRecord(org.mozilla.jss.netscape.security.x509.X500Name ownerName)
Recovers an archived key by owner name.Methods in com.netscape.cmscore.dbs that return types with arguments of type IKeyRecord Modifier and Type Method Description java.util.Enumeration<IKeyRecord>
KeyRecordList. getKeyRecords(int startidx, int endidx)
Retrieves requests.java.util.Enumeration<IKeyRecord>
KeyRepository. searchKeys(java.lang.String filter, int maxSize)
java.util.Enumeration<IKeyRecord>
KeyRepository. searchKeys(java.lang.String filter, int maxSize, int timeLimit)
Methods in com.netscape.cmscore.dbs with parameters of type IKeyRecord Modifier and Type Method Description void
KeyRepository. addKeyRecord(IKeyRecord record)
Archives a key to the repository.Constructor parameters in com.netscape.cmscore.dbs with type arguments of type IKeyRecord Constructor Description KeyRecordList(IDBVirtualList<IKeyRecord> vlist)
Constructs a key list.
-