Searched refs:referrals (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DUnsolicitedResponseImpl.java39 private String[] referrals; field in class:UnsolicitedResponseImpl
51 referrals = new String[len];
53 referrals[i] = (String)ref.elementAt(i);
91 * @return A possibly null array of referrals, each of which is represented
95 return referrals;
H A DLdapReferralException.java39 * An <tt>LdapReferralException</tt> object contains one or more referrals.
42 * The referrals are attempted in sequence until one is successful or
52 * Once the current set of referrals have been exhausted and unprocessed
78 private Vector referrals = null; // alternatives,set by setReferralInfo() field in class:LdapReferralException
79 private int referralIndex = 0; // index into referrals
80 private int referralCount = 0; // count of referrals
172 return referrals.elementAt(referralIndex);
191 * Returns false when there are no referrals remaining to be processed.
213 void setReferralInfo(Vector referrals, boolean continuationRef) { argument
219 this.referrals
[all...]
H A DLdapResult.java40 Vector referrals = null; field in class:LdapResult
H A DLdapClient.java594 * Retrieve the next batch of entries and/or referrals.
624 if (res.referrals != null) {
625 res.referrals.setSize(0); // clear the (previous) set of referrals
686 if (res.referrals == null) {
687 res.referrals = new Vector(4);
689 res.referrals.addElement(URLs);
769 // handle LDAPv3 referrals (if present)
785 if (res.referrals == null) {
786 res.referrals
[all...]
H A DLdapCtx.java427 // process the referrals sequentially
591 // process the referrals sequentially
644 // process the referrals sequentially
748 // process the referrals sequentially
822 // process the referrals sequentially
874 // process the referrals sequentially
982 // %%% RL: are there any implications for referrals?
1061 // process the referrals sequentially
1121 (answer.referrals != null)) {
1131 // process the referrals sequentiall
[all...]
H A DLdapNamingEnumeration.java58 * Record the next set of entries and/or referrals.
63 // These checks are to accommodate referrals and limit exceptions
125 * Retrieve the next set of entries and/or referrals.
143 (res.referrals != null))) {
146 // convert referrals into a chain of LdapReferralException
157 // merge any newly received referrals with any current referrals
176 * Test if unprocessed entries or referrals exist.
206 * Test if unprocessed entries or referrals exist.
317 * Append the supplied (chain of) referrals ont
[all...]

Completed in 1511 milliseconds