Home | History | Annotate | Download | only in certpath

Lines Matching refs:ldap

119     // true if URI is ldap
120 private boolean ldap = false;
165 // if ldap URI, use an LDAPCertStore to fetch certs and CRLs
166 if (uri.getScheme().toLowerCase(Locale.ENGLISH).equals("ldap")) {
167 ldap = true;
168 ldapHelper = CertStoreHelper.getInstance("LDAP");
249 // if ldap URI we wrap the CertSelector in an LDAPCertSelector to
250 // avoid LDAP DN matching issues (see LDAPCertSelector for more info)
251 if (ldap) {
258 // Fetch the certificates via LDAP. LDAPCertStore has its own
359 // if ldap URI we wrap the CRLSelector in an LDAPCRLSelector to
360 // avoid LDAP DN matching issues (see LDAPCRLSelector for more info)
361 if (ldap) {
368 // Fetch the CRLs via LDAP. LDAPCertStore has its own
374 throw new PKIX.CertStoreTypeException("LDAP", cse);