Class PKIXCRLUtil
- java.lang.Object
-
- eu.emi.security.authn.x509.helpers.pkipath.bc.PKIXCRLUtil
-
class PKIXCRLUtil extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description PKIXCRLUtil()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set
findCRLs(org.bouncycastle.jcajce.PKIXCRLStoreSelector crlselect, java.util.Date validityDate, java.util.List certStores, java.util.List pkixCrlStores)
private java.util.Collection
findCRLs(org.bouncycastle.jcajce.PKIXCRLStoreSelector crlSelect, java.util.List crlStores)
Return a Collection of all CRLs found in the X509Store's that are matching the crlSelect criteriums.
-
-
-
Method Detail
-
findCRLs
public java.util.Set findCRLs(org.bouncycastle.jcajce.PKIXCRLStoreSelector crlselect, java.util.Date validityDate, java.util.List certStores, java.util.List pkixCrlStores) throws org.bouncycastle.jce.provider.AnnotatedException
- Throws:
org.bouncycastle.jce.provider.AnnotatedException
-
findCRLs
private final java.util.Collection findCRLs(org.bouncycastle.jcajce.PKIXCRLStoreSelector crlSelect, java.util.List crlStores) throws org.bouncycastle.jce.provider.AnnotatedException
Return a Collection of all CRLs found in the X509Store's that are matching the crlSelect criteriums.- Parameters:
crlSelect
- aPKIXCRLStoreSelector
object that will be used to select the CRLscrlStores
- a List containing onlyStore
objects. These are used to search for CRLs- Returns:
- a Collection of all found
X509CRL
objects. May be empty but nevernull
. - Throws:
org.bouncycastle.jce.provider.AnnotatedException
-
-