| java.lang.Object org.apache.catalina.users.MemoryUserDatabaseFactory
MemoryUserDatabaseFactory | public class MemoryUserDatabaseFactory implements ObjectFactory(Code) | | 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]
author: Craig R. McClanahan version: $Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ since: 4.1 |
getObjectInstance | public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception(Code) | | Create and return a new MemoryUserDatabase instance
that has been configured according to the properties of the
specified Reference . If you instance can be created,
return null instead.
Parameters: obj - The possibly null object containing location orreference information that can be used in creating an object Parameters: name - The name of this object relative to nameCtx Parameters: nameCtx - The context relative to which the name parameter is specified, or null if name is relative to the default initial context Parameters: environment - The possibly null environment that is used increating this object |
|
|