1 7 8 package javax.naming.ldap; 9 10 import javax.naming.NamingException ; 11 import javax.naming.directory.DirContext ; 12 import java.util.Hashtable ; 13 14 161 162 public interface LdapContext extends DirContext { 163 173 public ExtendedResponse extendedOperation(ExtendedRequest request) 174 throws NamingException ; 175 176 202 public LdapContext newInstance(Control [] requestControls) 203 throws NamingException ; 204 205 233 public void reconnect(Control [] connCtls) throws NamingException ; 234 235 246 public Control [] getConnectControls() throws NamingException ; 247 248 273 public void setRequestControls(Control [] requestControls) 274 throws NamingException ; 275 276 288 public Control [] getRequestControls() throws NamingException ; 289 290 315 public Control [] getResponseControls() throws NamingException ; 316 317 333 static final String CONTROL_FACTORIES = "java.naming.factory.control"; 334 } 335 | Popular Tags |