203204205206207208209
throw new NotYetImplementedException(); } public Object addToEnvironment(String propName, Object propVal) throws NamingException { throw new NotYetImplementedException(); }
208209210211212213214
throw new NotYetImplementedException(); } public Object removeFromEnvironment(String propName) throws NamingException { throw new NotYetImplementedException(); }
213214215216217218219
throw new NotYetImplementedException(); } public Hashtable getEnvironment() throws NamingException { throw new NotYetImplementedException(); }
222223224225226227228
{ } public String getNameInNamespace() throws NamingException { throw new NotYetImplementedException(); }
77787980818283
// Context implementation ---------------------------------------- public Object lookup(Name name) throws NamingException { throw new NotYetImplementedException(); }
111112113114115116117
} } public void bind(Name name, Object obj) throws NamingException { throw new NotYetImplementedException(); }
121122123124125126127
internalBind(name, obj, false); } public void rebind(Name name, Object obj) throws NamingException { throw new NotYetImplementedException(); }
131132133134135136137
internalBind(name, obj, true); } public void unbind(Name name) throws NamingException { throw new NotYetImplementedException(); }
157158159160161162163
} } public void rename(Name oldName, Name newName) throws NamingException { throw new NotYetImplementedException(); }
162163164165166167168
throw new NotYetImplementedException(); } public void rename(String oldName, String newName) throws NamingException { throw new NotYetImplementedException(); }