Searched refs:LdapCtx (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DSortResponseControl.java33 import com.sun.jndi.ldap.LdapCtx;
167 return LdapCtx.mapErrorCode(resultCode, null);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapBindingEnumeration.java37 LdapBindingEnumeration(LdapCtx homeCtx, LdapResult answer, Name remain,
56 obj = new LdapCtx(homeCtx, dn);
H A DLdapCtxFactory.java71 return new LdapCtx("", LdapCtx.DEFAULT_HOST,
72 LdapCtx.DEFAULT_PORT, envprops, false);
94 (Control[])envprops.get(LdapCtx.BIND_CONTROLS) : null;
96 return (LdapCtx)e.getReferralContext(envprops, bindCtls);
190 ((LdapCtx)ctx).setDomainName(domainName);
193 ctx = new LdapCtx(dn, host, port, env, ldapUrl.useSsl());
195 ((LdapCtx)ctx).setProviderUrl(url);
H A DLdapSearchEnumeration.java40 private LdapCtx.SearchArgs searchArgs = null;
42 LdapSearchEnumeration(LdapCtx homeCtx, LdapResult search_results,
43 String starter, LdapCtx.SearchArgs args, Continuation cont)
117 obj = new LdapCtx(homeCtx, dn);
H A DLdapAttribute.java99 * Used by LdapCtx.setParents().
152 realEnv = ((LdapCtx)baseCtx).envprops;
153 this.baseCtxURL = ((LdapCtx)baseCtx).getURL();
H A DUnsolicitedResponseImpl.java56 exception = LdapCtx.mapErrorCode(status, msg);
H A DLdapSchemaCtx.java65 LdapCtx schemaEntry, Attributes schemaAttrs, boolean netscapeBug)
388 private LdapCtx schemaEntry;
395 SchemaInfo(String schemaEntryName, LdapCtx schemaEntry,
412 private LdapCtx reopenEntry(Hashtable env) throws NamingException {
414 return new LdapCtx(schemaEntryName, host, port,
H A DEventSupport.java105 *This class is used by the main thread (LdapCtx) to add/remove listeners.
118 private LdapCtx ctx;
137 EventSupport(LdapCtx ctx) {
260 * Called by LdapCtx when its clnt receives an unsolicited notification.
294 // Likewise for LdapCtx.
303 * Package private; used by LdapCtx.
348 // an LdapCtx. LdapCtx's finalize() and close() always call cleanup() so
H A DNamingEventNotifier.java55 private LdapCtx context;
63 NamingEventNotifier(EventSupport support, LdapCtx ctx, NotifierArgs info,
83 context = (LdapCtx)ctx.newInstance(new Control[]{psearch});
H A DLdapNamingEnumeration.java51 protected LdapCtx homeCtx;
60 LdapNamingEnumeration(LdapCtx homeCtx, LdapResult answer, Name listArg,
H A DClientId.java84 !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
H A DLdapCtx.java57 * LdapCtx.convertControls() and LdapCtx.fireUnsolicited().
60 * (even those in other methods); don't sync on LdapCtx in case caller
67 * EventQueue - no direct or indirect calls to LdapCtx
71 * LdapAttribute links to LdapCtx in order to process getAttributeDefinition()
72 * and getAttributeSyntaxDefinition() calls. It invokes LdapCtx.getSchema(),
77 * NamingEnumerations link to LdapCtx for the following:
81 * 3. Sets LdapCtx's response controls
85 * invocation on LdapCtx, caller is responsible for locking.
91 final public class LdapCtx extend class in inherits:ComponentDirContext,EventDirContext,LdapContext
275 public LdapCtx(String dn, String host, int port_number, Hashtable props, method in class:LdapCtx
327 LdapCtx(LdapCtx existing, String newDN) throws NamingException { method in class:LdapCtx
[all...]
H A DLdapReferralContext.java76 env.remove(LdapCtx.BIND_CONTROLS);
85 env.put(LdapCtx.BIND_CONTROLS, copiedCtls);
193 if ((refCtx != null) && (refCtx instanceof LdapCtx)) {
194 ((LdapCtx)refCtx).setHopCount(hopCount);
H A DLdapClient.java56 * Multiple LdapCtx might share the same LdapClient. For example, contexts
114 boolean isLdapv3; // Used by LdapCtx
115 int referenceCount = 1; // Used by LdapCtx for check for sharing
118 // used by LdapCtx for StartTLS
1465 // An LdapClient maintains a list of LdapCtx that have registered
1469 // When addUnsolicited() is invoked, the LdapCtx is added to the list.
1475 // and informs each LdapCtx to fire an event for the notification.
1482 // removeUnsolicited() is invoked to remove an LdapCtx from this client.
1486 void addUnsolicited(LdapCtx ctx) {
1493 void removeUnsolicited(LdapCtx ct
[all...]
H A DLdapPoolManager.java236 !socketFactory.equals(LdapCtx.DEFAULT_SSL_FACTORY)) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/url/ldap/
H A DldapURLContextFactory.java32 import com.sun.jndi.ldap.LdapCtx;
59 DirContext ctx = new LdapCtx("", ldapUrl.getHost(), ldapUrl.getPort(),

Completed in 194 milliseconds