1 7 8 package javax.naming; 9 10 import java.util.Hashtable ; 11 12 53 54 public abstract class ReferralException extends NamingException { 55 62 protected ReferralException(String explanation) { 63 super(explanation); 64 } 65 66 70 protected ReferralException() { 71 super(); 72 } 73 74 83 public abstract Object getReferralInfo(); 84 85 103 public abstract Context getReferralContext() throws NamingException ; 104 105 132 public abstract Context 133 getReferralContext(Hashtable <?,?> env) 134 throws NamingException ; 135 136 155 public abstract boolean skipReferral(); 156 157 181 public abstract void retryReferral(); 182 183 186 private static final long serialVersionUID = -2881363844695698876L; 187 } 188 | Popular Tags |