Class DataSourceProxy
- java.lang.Object
-
- no.priv.bang.jdbc.datasourceproxy.DataSourceProxy
-
- All Implemented Interfaces:
Wrapper
,CommonDataSource
,DataSource
public class DataSourceProxy extends Object implements DataSource
This is class implementsDataSource
and is a proxy for anotherDataSource
that is set with thesetWrappedDataSource(DataSource)
method. All DataSource methods are delegated to the wrapped datasource. A usecase for this proxy is where you have a DataSource OSGi service with a given service name, and wish to use that service with a different service name.
-
-
Field Summary
Fields Modifier and Type Field Description private DataSource
wrappedDataSource
-
Constructor Summary
Constructors Constructor Description DataSourceProxy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Connection
getConnection()
Connection
getConnection(String username, String password)
int
getLoginTimeout()
PrintWriter
getLogWriter()
Logger
getParentLogger()
boolean
isWrapperFor(Class<?> clazz)
void
setLoginTimeout(int timeoutInSeconds)
void
setLogWriter(PrintWriter logwriter)
void
setWrappedDataSource(DataSource wrappedDataSource)
Sets theDataSource
that all methods delegate to<T> T
unwrap(Class<T> iface)
-
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
-
-
-
-
Field Detail
-
wrappedDataSource
private DataSource wrappedDataSource
-
-
Method Detail
-
setWrappedDataSource
public void setWrappedDataSource(DataSource wrappedDataSource)
Sets theDataSource
that all methods delegate to- Parameters:
wrappedDataSource
- is the DataSource instance implementing everything
-
setLogWriter
public void setLogWriter(PrintWriter logwriter) throws SQLException
- Specified by:
setLogWriter
in interfaceCommonDataSource
- Specified by:
setLogWriter
in interfaceDataSource
- Throws:
SQLException
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriter
in interfaceCommonDataSource
- Specified by:
getLogWriter
in interfaceDataSource
- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int timeoutInSeconds) throws SQLException
- Specified by:
setLoginTimeout
in interfaceCommonDataSource
- Specified by:
setLoginTimeout
in interfaceDataSource
- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException
- Specified by:
getLoginTimeout
in interfaceCommonDataSource
- Specified by:
getLoginTimeout
in interfaceDataSource
- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLogger
in interfaceCommonDataSource
- Throws:
SQLFeatureNotSupportedException
-
isWrapperFor
public boolean isWrapperFor(Class<?> clazz) throws SQLException
- Specified by:
isWrapperFor
in interfaceWrapper
- Throws:
SQLException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrap
in interfaceWrapper
- Throws:
SQLException
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnection
in interfaceDataSource
- Throws:
SQLException
-
getConnection
public Connection getConnection(String username, String password) throws SQLException
- Specified by:
getConnection
in interfaceDataSource
- Throws:
SQLException
-
-