diff options
Diffstat (limited to 'libjava/javax/naming/Context.java')
-rw-r--r-- | libjava/javax/naming/Context.java | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/libjava/javax/naming/Context.java b/libjava/javax/naming/Context.java index d9f5204..8d3b9f6 100644 --- a/libjava/javax/naming/Context.java +++ b/libjava/javax/naming/Context.java @@ -79,5 +79,50 @@ public interface Context public void bind (Name name, Object obj) throws NamingException; public void bind (String name, Object obj) throws NamingException; + + public Object lookup (Name name) throws NamingException; + public Object lookup (String name) throws NamingException; + + public void rebind (Name name, Object obj) throws NamingException; + public void rebind (String name, Object obj) throws NamingException; + + public void unbind (Name name) throws NamingException; + public void unbind (String name) throws NamingException; + + public void rename (Name oldName, Name newName) throws NamingException; + public void rename (String oldName, String newName) throws NamingException; + + public NamingEnumeration list (Name name) throws NamingException; + public NamingEnumeration list (String name) throws NamingException; + + public NamingEnumeration listBindings (Name name) throws NamingException; + public NamingEnumeration listBindings (String name) throws NamingException; + + public void destroySubcontext (Name name) throws NamingException; + public void destroySubcontext (String name) throws NamingException; + + public Context createSubcontext (Name name) throws NamingException; + public Context createSubcontext (String name) throws NamingException; + + public Object lookupLink (Name name) throws NamingException; + public Object lookupLink (String name) throws NamingException; + + public NameParser getNameParser (Name name) throws NamingException; + public NameParser getNameParser (String name) throws NamingException; + + public Name composeName (Name name, Name prefix) throws NamingException; + public String composeName (String name, + String prefix) throws NamingException; + + public Object addToEnvironment (String propName, + Object propVal) throws NamingException; + + public Object removeFromEnvironment (String propName) throws NamingException; + + public Hashtable getEnvironment () throws NamingException; + + public void close () throws NamingException; + + public String getNameInNamespace () throws NamingException; } |