org.apache.jackrabbit.core.util.db
Class DataSourceWrapper

java.lang.Object
  extended by 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 wrapped DataSource except for the getConnection() method, which delegates to DataSource#getConnection(String, String) with the username and password which are given on construction.


Constructor Summary
DataSourceWrapper(DataSource dataSource, String username, String password)
           
 
Method Summary
 Connection getConnection()
          
 Connection getConnection(String username, String password)
          
 int getLoginTimeout()
          
 PrintWriter getLogWriter()
          
 boolean isWrapperFor(Class<?> arg0)
          Java 6 method.
 void setLoginTimeout(int seconds)
          
 void setLogWriter(PrintWriter out)
          
<T> T
unwrap(Class<T> arg0)
          Java 6 method.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataSourceWrapper

public DataSourceWrapper(DataSource dataSource,
                         String username,
                         String password)
Parameters:
dataSource - the DataSource to wrap
username - the username to use
password - the password to use
Method Detail

isWrapperFor

public boolean isWrapperFor(Class<?> arg0)
                     throws SQLException
Java 6 method.

Specified by:
isWrapperFor in interface Wrapper
Throws:
SQLException

unwrap

public <T> T unwrap(Class<T> arg0)
         throws SQLException
Java 6 method.

Specified by:
unwrap in interface Wrapper
Throws:
SQLException

getConnection

public Connection getConnection()
                         throws SQLException

Specified by:
getConnection in interface DataSource
Throws:
SQLException

getConnection

public Connection getConnection(String username,
                                String password)
                         throws SQLException

Specified by:
getConnection in interface DataSource
Throws:
SQLException

getLogWriter

public PrintWriter getLogWriter()
                         throws SQLException

Specified by:
getLogWriter in interface CommonDataSource
Throws:
SQLException

getLoginTimeout

public int getLoginTimeout()
                    throws SQLException

Specified by:
getLoginTimeout in interface CommonDataSource
Throws:
SQLException

setLogWriter

public void setLogWriter(PrintWriter out)
                  throws SQLException

Specified by:
setLogWriter in interface CommonDataSource
Throws:
SQLException

setLoginTimeout

public void setLoginTimeout(int seconds)
                     throws SQLException

Specified by:
setLoginTimeout in interface CommonDataSource
Throws:
SQLException


Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.