1 7 8 package javax.naming.ldap; 9 10 import javax.naming.ReferralException ; 11 import javax.naming.Context ; 12 import javax.naming.NamingException ; 13 import java.util.Hashtable ; 14 15 34 35 public abstract class LdapReferralException extends ReferralException { 36 43 protected LdapReferralException(String explanation) { 44 super(explanation); 45 } 46 47 51 protected LdapReferralException() { 52 super(); 53 } 54 55 75 public abstract Context getReferralContext() throws NamingException ; 76 77 99 public abstract Context 100 getReferralContext(Hashtable <?,?> env) 101 throws NamingException ; 102 103 139 public abstract Context 140 getReferralContext(Hashtable <?,?> env, 141 Control [] reqCtls) 142 throws NamingException ; 143 144 private static final long serialVersionUID = -1668992791764950804L; 145 } 146 | Popular Tags |