Class DataSourceWrapper
- java.lang.Object
-
- org.apache.jackrabbit.core.util.db.DataSourceWrapper
-
- All Implemented Interfaces:
Wrapper,CommonDataSource,DataSource
public class DataSourceWrapper extends Object implements DataSource
This class delegates all calls to the corresponding method on the wrappedDataSourceexcept for thegetConnection()method, which delegates toDataSource#getConnection(String, String)with the username and password which are given on construction.
-
-
Constructor Summary
Constructors Constructor Description DataSourceWrapper(DataSource dataSource, String username, String password)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectiongetConnection()ConnectiongetConnection(String username, String password)intgetLoginTimeout()PrintWritergetLogWriter()LoggergetParentLogger()Unsupported Java 7 method.booleanisWrapperFor(Class<?> arg0)Java 6 method.voidsetLoginTimeout(int seconds)voidsetLogWriter(PrintWriter out)<T> Tunwrap(Class<T> arg0)Java 6 method.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
-
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
-
-
-
Constructor Detail
-
DataSourceWrapper
public DataSourceWrapper(DataSource dataSource, String username, String password)
- Parameters:
dataSource- theDataSourceto wrapusername- the username to usepassword- the password to use
-
-
Method Detail
-
isWrapperFor
public boolean isWrapperFor(Class<?> arg0) throws SQLException
Java 6 method.- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
unwrap
public <T> T unwrap(Class<T> arg0) throws SQLException
Java 6 method.- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger()
Unsupported Java 7 method.- Specified by:
getParentLoggerin interfaceCommonDataSource- See Also:
- JCR-3167
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getConnection
public Connection getConnection(String username, String password) throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriterin interfaceCommonDataSource- Specified by:
getLogWriterin interfaceDataSource- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException- Specified by:
getLoginTimeoutin interfaceCommonDataSource- Specified by:
getLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
setLogWriter
public void setLogWriter(PrintWriter out) throws SQLException
- Specified by:
setLogWriterin interfaceCommonDataSource- Specified by:
setLogWriterin interfaceDataSource- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int seconds) throws SQLException- Specified by:
setLoginTimeoutin interfaceCommonDataSource- Specified by:
setLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
-