Package org.bouncycastle.jcajce
Class PKIXCertStoreSelector<T extends Certificate>
- java.lang.Object
-
- org.bouncycastle.jcajce.PKIXCertStoreSelector<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPKIXCertStoreSelector.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()Creates and returns a copy of thisObject.static Collection<? extends Certificate>getCertificates(PKIXCertStoreSelector selector, CertStore certStore)booleanmatch(Certificate cert)
-
-
-
Method Detail
-
match
public boolean match(Certificate cert)
- Specified by:
matchin interfaceSelector<T extends Certificate>
-
clone
public Object clone()
Description copied from class:ObjectCreates and returns a copy of thisObject. The default implementation returns a so-called "shallow" copy: It creates a new instance of the same class and then copies the field values (including object references) from this instance to the new instance. A "deep" copy, in contrast, would also recursively clone nested objects. A subclass that needs to implement this kind of cloning should callsuper.clone()to create the new instance and then create deep copies of the nested, mutable objects.
-
getCertificates
public static Collection<? extends Certificate> getCertificates(PKIXCertStoreSelector selector, CertStore certStore) throws CertStoreException
- Throws:
CertStoreException
-
-