Searched defs:reqCtls (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapReferralException.java130 * <tt>reqCtls</tt> is used when creating the connection to the referred
134 * <tt>reqCtls</tt> will also be the context's request controls for
146 * @param reqCtls The possibly null request controls to use for the new context.
158 Control[] reqCtls)
157 getReferralContext(Hashtable<?,?> env, Control[] reqCtls) argument
H A DInitialLdapContext.java186 public LdapContext newInstance(Control[] reqCtls) argument
188 return getDefaultLdapInitCtx().newInstance(reqCtls);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DConnection.java542 void abandonRequest(LdapRequest ldr, Control[] reqCtls) { argument
558 LdapClient.encodeControls(ber, reqCtls);
579 synchronized void abandonOutstandingReqs(Control[] reqCtls) { argument
583 abandonRequest(ldr, reqCtls);
595 private void ldapUnbind(Control[] reqCtls) { argument
613 LdapClient.encodeControls(ber, reqCtls);
635 * @param reqCtls Possibly null request controls that accompanies the
644 void cleanup(Control[] reqCtls, boolean notifyParent) { argument
656 abandonOutstandingReqs(reqCtls);
659 ldapUnbind(reqCtls);
[all...]
H A DLdapReferralException.java75 private Control[] reqCtls; field in class:LdapReferralException
104 Control[] reqCtls) {
119 this.reqCtls =
120 (handleReferrals == LdapClient.LDAP_REF_FOLLOW ? reqCtls : null);
151 this, newProps, connCtls, reqCtls,
97 LdapReferralException(Name resolvedName, Object resolvedObj, Name remainingName, String explanation, Hashtable envprops, String nextName, int handleReferrals, Control[] reqCtls) argument
H A DLdapReferralContext.java57 Control[] reqCtls,
134 if (refCtx instanceof LdapContext && reqCtls != null) {
135 ((LdapContext)refCtx).setRequestControls(reqCtls);
55 LdapReferralContext(LdapReferralException ex, Hashtable env, Control[] connCtls, Control[] reqCtls, String nextName, boolean skipThisReferral, int handleReferrals) argument
H A DLdapClient.java426 synchronized void close(Control[] reqCtls, boolean hardClose) { argument
439 conn.cleanup(reqCtls, false);
446 conn.cleanup(reqCtls, false);
526 String filter, int batchSize, Control[] reqCtls,
552 if (isLdapv3) encodeControls(ber, reqCtls);
853 static void encodeControls(BerEncoder ber, Control[] reqCtls) argument
856 if ((reqCtls == null) || (reqCtls.length == 0)) {
864 for (int i = 0; i < reqCtls.length; i++) {
866 ber.encodeString(reqCtls[
524 search(String dn, int scope, int deref, int sizeLimit, int timeLimit, boolean attrsOnly, String attrs[], String filter, int batchSize, Control[] reqCtls, Hashtable binaryAttrs, boolean waitFirstReply, int replyQueueCapacity) argument
919 modify(String dn, int operations[], Attribute attrs[], Control[] reqCtls) argument
998 add(LdapEntry entry, Control[] reqCtls) argument
1046 delete(String DN, Control[] reqCtls) 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
1173 extendedOp(String id, byte[] request, Control[] reqCtls, boolean pauseAfterReceipt) argument
[all...]
H A DLdapCtx.java236 Control[] reqCtls = null; // Controls to be sent with each request field in class:LdapCtx
358 public LdapContext newInstance(Control[] reqCtls) throws NamingException { argument
365 // setRequestControls() will clone reqCtls
366 clone.setRequestControls(reqCtls);
416 LdapResult answer = clnt.add(entry, reqCtls);
542 LdapResult answer = clnt.delete(newDN, reqCtls);
556 answer = clnt.add(entry, reqCtls);
570 clnt.add(new LdapEntry(newDN, keepAttrs), reqCtls);
631 LdapResult answer = clnt.delete(fname, reqCtls);
722 reqCtls);
3265 setRequestControls(Control[] reqCtls) argument
[all...]

Completed in 35 milliseconds