Searched defs:DN (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapEntry.java39 String DN; field in class:LdapEntry
43 LdapEntry(String DN, Attributes attrs) { argument
44 this.DN = DN;
48 LdapEntry(String DN, Attributes attrs, Vector respCtls) { argument
49 this.DN = DN;
H A DLdapURL.java71 private String DN = null; field in class:LdapURL
92 parsePathAndQuery(); // DN, attributes, scope, filter, extensions
116 return DN;
207 DN = path.startsWith("/") ? path.substring(1) : path;
208 if (DN.length() > 0) {
209 DN = UrlUtil.decode(DN, "UTF8");
263 System.out.println(" DN: " + url.getDN());
H A DLdapClient.java306 * @param dn The possibly null DN to use in the BIND request. null if anonymous.
633 String DN; // DN read from response
652 DN = replyBer.parseString(isLdapv3);
653 le = new LdapEntry(DN, lattrs);
905 // Modify the DN dn with the operations on attributes attrs.
908 // dn - DN to modify
1006 if (entry == null || entry.DN == null)
1016 ber.encodeString(entry.DN, isLdapv3);
1046 LdapResult delete(String DN, Contro argument
1084 moddn(String DN, String newrdn, boolean deleteOldRdn, String newSuperior, Control[] reqCtls) argument
1129 compare(String DN, String type, String value, Control[] reqCtls) argument
[all...]

Completed in 33 milliseconds