All Packages Class Hierarchy This Package Previous Next Index
Class oracle.aurora.jndi.sess_iiop.sess_iiopURLContext
java.lang.Object
|
+----oracle.aurora.jndi.sess_iiop.sess_iiopURLContext
- public class sess_iiopURLContext
- extends Object
sess_iiopURLContext represents the top level Context in the
sess_iiop URL namespace on the client. For every instance of
an InitialContext created, there is exactly one instance of
sess_iiopURLContext. The child Contexts of this class are
ServiceCtx, representing the services that bave been resolved.
When the first service is resolved in the initial context,
it is aliased to the name "default", which represents the
default service of the sess_iiop Context.
- Author:
- Hal Hildebrand
- See Also:
- ServiceCtx, SessionCtx
-
DEFAULT_SERVICE
- The name that the default service is bound to
-
SERVER_CONTEXT
-
-
SERVER_PORT
-
-
THIS_SERVER
- When in the server, this represents the Oracle 8.i server that
hosts the current session.
-
_lookup(Name)
- Lookup, but do not activate, the object bound to
the name.
-
_lookup(String)
- Lookup, but do not activate, the object associated
with the string name.
-
addToEnvironment(String, Object)
- Add the key/value pair to the receiver's environment
-
bind(Name, Object)
- Bind the value to the key in the reciever.
-
bind(String, Object)
- Bind the value to the key in the reciever.
-
close()
- Close up all resources associated
with the receiver
-
composeName(Name, Name)
- Compose two names
-
composeName(String, String)
- Compose two names.
-
createSubcontext(Name)
- Do nothing.
-
createSubcontext(String)
- Do nothing.
-
destroySubcontext(Name)
- Destroy the context associated with the
name.
-
destroySubcontext(String)
- Destroy the context associated with the
name.
-
getEnvironment()
- Answer the receiver's environment.
-
getNameParser(Name)
- Answer the parser for the receiver
-
getNameParser(String)
- Answer the parser for the receiver
-
list(Name)
- List the bindings associated with the context bound
to a name
-
list(String)
- List the bindings associated with the context bound
to a name
-
listBindings(Name)
- List the bindings associated with the context bound
to a name
-
listBindings(String)
- List the bindings associated with the context bound
to a name
-
lookup(Name)
- Lookup the Object bound to a name.
-
lookup(String)
- Lookup the Object bound to a name.
-
lookupLink(Name)
- Lookup the Object bound to a name.
-
lookupLink(String)
- Lookup the Object bound to a name.
-
rebind(Name, Object)
- Rebind the name to the Object.
-
rebind(String, Object)
- Rebind the name to the Object.
-
removeFromEnvironment(String)
- Remove the key and associated value from the
receiver's environment.
-
rename(Name, Name)
- Rename the object bound to the from name to the to name.
-
rename(String, String)
- Rename the object bound to the from name to the to name.
-
setEnv(Hashtable)
- Set the environment of the receiver.
-
unbind(Name)
- Unbind the Object associated with the name
-
unbind(String)
- Unbind the Object associated with the name
DEFAULT_SERVICE
public static final String DEFAULT_SERVICE
- The name that the default service is bound to
THIS_SERVER
public static final String THIS_SERVER
- When in the server, this represents the Oracle 8.i server that
hosts the current session.
SERVER_PORT
public static final String SERVER_PORT
SERVER_CONTEXT
public static final String SERVER_CONTEXT
_lookup
public Object _lookup(String string) throws NamingException
- Lookup, but do not activate, the object associated
with the string name. This method will return the instance of
the PublishedObject, rather than the object that is published.
_lookup
public Object _lookup(Name name) throws NamingException
- Lookup, but do not activate, the object bound to
the name. This method will return the instance of
the PublishedObject, rather than the object that is published.
addToEnvironment
public Object addToEnvironment(String key,
Object value) throws NamingException
- Add the key/value pair to the receiver's environment
bind
public void bind(String key,
Object value) throws NamingException
- Bind the value to the key in the reciever.
bind
public void bind(Name name,
Object object) throws NamingException
- Bind the value to the key in the reciever.
close
public void close() throws NamingException
- Close up all resources associated
with the receiver
composeName
public String composeName(String name1,
String name2) throws NamingException
- Compose two names.
composeName
public Name composeName(Name name1,
Name name2) throws NamingException
- Compose two names
createSubcontext
public Context createSubcontext(String name) throws NamingException
- Do nothing. This operation is not supported
in the sess_iiopURLContext
createSubcontext
public Context createSubcontext(Name arg1) throws NamingException
- Do nothing. This operation is not supported
in the sess_iiopURLContext
destroySubcontext
public void destroySubcontext(String string) throws NamingException
- Destroy the context associated with the
name.
destroySubcontext
public void destroySubcontext(Name name) throws NamingException
- Destroy the context associated with the
name.
getEnvironment
public Hashtable getEnvironment() throws NamingException
- Answer the receiver's environment.
getNameParser
public NameParser getNameParser(String arg1) throws NamingException
- Answer the parser for the receiver
getNameParser
public NameParser getNameParser(Name arg1) throws NamingException
- Answer the parser for the receiver
list
public NamingEnumeration list(String name) throws NamingException
- List the bindings associated with the context bound
to a name
list
public NamingEnumeration list(Name name) throws NamingException
- List the bindings associated with the context bound
to a name
listBindings
public NamingEnumeration listBindings(String string) throws NamingException
- List the bindings associated with the context bound
to a name
listBindings
public NamingEnumeration listBindings(Name name) throws NamingException
- List the bindings associated with the context bound
to a name
lookup
public Object lookup(String string) throws NamingException
- Lookup the Object bound to a name. If the name resolves to
a PublishedObject, this method will activate the PublishedObject,
returning the Object which is published.
lookup
public Object lookup(Name name) throws NamingException
- Lookup the Object bound to a name. If the name resolves to
a PublishedObject, this method will activate the PublishedObject,
returning the Object which is published.
lookupLink
public Object lookupLink(String string) throws NamingException
- Lookup the Object bound to a name. If the name resolves to
a PublishedObject, this method will activate the PublishedObject,
returning the Object which is published.
lookupLink
public Object lookupLink(Name name) throws NamingException
- Lookup the Object bound to a name. If the name resolves to
a PublishedObject, this method will activate the PublishedObject,
returning the Object which is published.
rebind
public void rebind(String string,
Object obj) throws NamingException
- Rebind the name to the Object.
rebind
public void rebind(Name name,
Object object) throws NamingException
- Rebind the name to the Object.
removeFromEnvironment
public Object removeFromEnvironment(String key) throws NamingException
- Remove the key and associated value from the
receiver's environment.
rename
public void rename(String from,
String to) throws NamingException
- Rename the object bound to the from name to the to name.
rename
public void rename(Name from,
Name to) throws NamingException
- Rename the object bound to the from name to the to name.
setEnv
public sess_iiopURLContext setEnv(Hashtable _env)
- Set the environment of the receiver.
unbind
public void unbind(String string) throws NamingException
- Unbind the Object associated with the name
unbind
public void unbind(Name n) throws NamingException
- Unbind the Object associated with the name
All Packages Class Hierarchy This Package Previous Next Index