Searched defs:ldapDN (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStoreHelper.java59 String ldapDN)
62 return new LDAPCertStore.LDAPCertSelector(selector, certSubject, ldapDN);
68 String ldapDN)
71 return new LDAPCertStore.LDAPCRLSelector(selector, certIssuers, ldapDN);
57 wrap(X509CertSelector selector, X500Principal certSubject, String ldapDN) argument
66 wrap(X509CRLSelector selector, Collection<X500Principal> certIssuers, String ldapDN) argument
H A DLDAPCertStore.java915 * @param ldapDN the LDAP DN where the certificate is stored
918 String ldapDN) throws IOException {
921 this.subject = new X500Name(ldapDN).asX500Principal();
1023 * @param ldapDN the LDAP DN where the CRL is stored
1026 Collection<X500Principal> certIssuers, String ldapDN)
1031 issuerNames.add(ldapDN);
1033 issuers.add(new X500Name(ldapDN).asX500Principal());
917 LDAPCertSelector(X509CertSelector selector, X500Principal certSubject, String ldapDN) argument
1025 LDAPCRLSelector(X509CRLSelector selector, Collection<X500Principal> certIssuers, String ldapDN) argument

Completed in 36 milliseconds