Package org.apache.catalina.users
Class MemoryUserDatabaseFactory
java.lang.Object
org.apache.catalina.users.MemoryUserDatabaseFactory
- All Implemented Interfaces:
ObjectFactory
JNDI object creation factory for MemoryUserDatabase
instances. This makes it convenient to configure a
user database in the global JNDI resources associated with this Catalina instance, and then link to that resource for
web applications that administer the contents of the user database.
The MemoryUserDatabase
instance is configured based on the following parameter values:
- pathname - Absolute or relative (to the directory path specified by the
catalina.base
system property) pathname to the XML file from which our user information is loaded, and to which it is stored. [conf/tomcat-users.xml]
- Since:
- 4.1
- Author:
- Craig R. McClanahan
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
MemoryUserDatabaseFactory
public MemoryUserDatabaseFactory()
-
-
Method Details
-
getObjectInstance
public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment) throws ExceptionCreate and return a new
MemoryUserDatabase
instance that has been configured according to the properties of the specifiedReference
. If you instance can be created, returnnull
instead.- Specified by:
getObjectInstance
in interfaceObjectFactory
- Parameters:
obj
- The possibly null object containing location or reference information that can be used in creating an objectname
- The name of this object relative tonameCtx
nameCtx
- The context relative to which thename
parameter is specified, ornull
ifname
is relative to the default initial contextenvironment
- The possibly null environment that is used in creating this object- Throws:
Exception
-