|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.mock.jndi.SimpleNamingContext
public class SimpleNamingContext
Simple implementation of a JNDI naming context. Only supports binding plain Objects to String names. Mainly for test environments, but also usable for standalone applications.
This class is not intended for direct usage by applications, although it
can be used for example to override JndiTemplate's createInitialContext
method in unit tests. Typically, SimpleNamingContextBuilder will be used to
set up a JVM-level JNDI environment.
SimpleNamingContextBuilder
,
JndiTemplate.createInitialContext()
Field Summary |
---|
Fields inherited from interface javax.naming.Context |
---|
APPLET, AUTHORITATIVE, BATCHSIZE, DNS_URL, INITIAL_CONTEXT_FACTORY, LANGUAGE, OBJECT_FACTORIES, PROVIDER_URL, REFERRAL, SECURITY_AUTHENTICATION, SECURITY_CREDENTIALS, SECURITY_PRINCIPAL, SECURITY_PROTOCOL, STATE_FACTORIES, URL_PKG_PREFIXES |
Constructor Summary | |
---|---|
SimpleNamingContext()
Create a new naming context. |
|
SimpleNamingContext(String root)
Create a new naming context with the given naming root. |
|
SimpleNamingContext(String root,
Hashtable boundObjects,
Hashtable environment)
Create a new naming context with the given naming root, the given name/object map, and the JNDI environment entries. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SimpleNamingContext()
public SimpleNamingContext(String root)
public SimpleNamingContext(String root, Hashtable boundObjects, Hashtable environment)
Method Detail |
---|
public NamingEnumeration list(String root) throws NamingException
list
in interface Context
NamingException
public NamingEnumeration listBindings(String root) throws NamingException
listBindings
in interface Context
NamingException
public Object lookup(String lookupName) throws NameNotFoundException
Note: Not intended for direct use by applications. Will be used by any standard InitialContext JNDI lookups.
lookup
in interface Context
NameNotFoundException
- if the object could not be foundpublic Object lookupLink(String name) throws NameNotFoundException
lookupLink
in interface Context
NameNotFoundException
public void bind(String name, Object obj)
bind
in interface Context
SimpleNamingContextBuilder.bind(java.lang.String, java.lang.Object)
public void unbind(String name)
unbind
in interface Context
public void rebind(String name, Object obj)
rebind
in interface Context
public void rename(String oldName, String newName) throws NameNotFoundException
rename
in interface Context
NameNotFoundException
public Context createSubcontext(String name)
createSubcontext
in interface Context
public void destroySubcontext(String name)
destroySubcontext
in interface Context
public String composeName(String name, String prefix)
composeName
in interface Context
public Hashtable getEnvironment()
getEnvironment
in interface Context
public Object addToEnvironment(String propName, Object propVal)
addToEnvironment
in interface Context
public Object removeFromEnvironment(String propName)
removeFromEnvironment
in interface Context
public void close()
close
in interface Context
public NamingEnumeration list(Name name) throws NamingException
list
in interface Context
NamingException
public NamingEnumeration listBindings(Name name) throws NamingException
listBindings
in interface Context
NamingException
public Object lookup(Name name) throws NamingException
lookup
in interface Context
NamingException
public Object lookupLink(Name name) throws NamingException
lookupLink
in interface Context
NamingException
public void bind(Name name, Object obj) throws NamingException
bind
in interface Context
NamingException
public void unbind(Name name) throws NamingException
unbind
in interface Context
NamingException
public void rebind(Name name, Object obj) throws NamingException
rebind
in interface Context
NamingException
public void rename(Name oldName, Name newName) throws NamingException
rename
in interface Context
NamingException
public Context createSubcontext(Name name) throws NamingException
createSubcontext
in interface Context
NamingException
public void destroySubcontext(Name name) throws NamingException
destroySubcontext
in interface Context
NamingException
public String getNameInNamespace() throws NamingException
getNameInNamespace
in interface Context
NamingException
public NameParser getNameParser(Name name) throws NamingException
getNameParser
in interface Context
NamingException
public NameParser getNameParser(String name) throws NamingException
getNameParser
in interface Context
NamingException
public Name composeName(Name name, Name prefix) throws NamingException
composeName
in interface Context
NamingException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |