org.h2.jdbcx
Class JdbcDataSourceFactory
java.lang.Object
org.h2.jdbcx.JdbcDataSourceFactory
- All Implemented Interfaces:
- javax.naming.spi.ObjectFactory
public class JdbcDataSourceFactory
- extends java.lang.Object
- implements javax.naming.spi.ObjectFactory
This class is used to create new DataSource objects.
An application should not use this class directly.
Method Summary |
java.lang.Object |
getObjectInstance(java.lang.Object obj,
javax.naming.Name name,
javax.naming.Context nameCtx,
java.util.Hashtable<?,?> environment)
Creates a new object using the specified location or reference
information. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
JdbcDataSourceFactory
public JdbcDataSourceFactory()
- The public constructor to create new factory objects.
getObjectInstance
public java.lang.Object getObjectInstance(java.lang.Object obj,
javax.naming.Name name,
javax.naming.Context nameCtx,
java.util.Hashtable<?,?> environment)
- Creates a new object using the specified location or reference
information.
- Specified by:
getObjectInstance
in interface javax.naming.spi.ObjectFactory
- Parameters:
obj
- the reference (this factory only supports objects of type
javax.naming.Reference)name
- unusednameCtx
- unusedenvironment
- unused
- Returns:
- the new JdbcDataSource, or null if the reference class name is
not JdbcDataSource.