Class DataSourceImpl
- java.lang.Object
-
- org.eclipse.persistence.internal.jpa.jdbc.DataSourceImpl
-
- All Implemented Interfaces:
java.sql.Wrapper,javax.sql.CommonDataSource,javax.sql.DataSource
public class DataSourceImpl extends java.lang.Object implements javax.sql.DataSourceA stubbed out impl of DataSource that can be used for testing. Does not support multiple threads or multiple usernames/passwords.
-
-
Constructor Summary
Constructors Constructor Description DataSourceImpl(java.lang.String dsName, java.lang.String url, java.lang.String userName, java.lang.String password)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.sql.ConnectiongetConnection()java.sql.ConnectiongetConnection(java.lang.String userName, java.lang.String password)intgetLoginTimeout()java.io.PrintWritergetLogWriter()java.lang.StringgetName()java.util.logging.LoggergetParentLogger()java.sql.ConnectioninternalGetConnection()java.sql.ConnectioninternalGetConnection(java.lang.String userName, java.lang.String password)booleanisTransactional()booleanisWrapperFor(java.lang.Class<?> iface)voidsetLoginTimeout(int seconds)voidsetLogWriter(java.io.PrintWriter out)voidsetTransactionManager(TransactionManagerImpl tm)<T> Tunwrap(java.lang.Class<T> iface)
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
setTransactionManager
public void setTransactionManager(TransactionManagerImpl tm)
-
internalGetConnection
public java.sql.Connection internalGetConnection(java.lang.String userName, java.lang.String password) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
internalGetConnection
public java.sql.Connection internalGetConnection() throws java.sql.SQLException- Throws:
java.sql.SQLException
-
isTransactional
public boolean isTransactional()
-
getConnection
public java.sql.Connection getConnection() throws java.sql.SQLException- Specified by:
getConnectionin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
getConnection
public java.sql.Connection getConnection(java.lang.String userName, java.lang.String password) throws java.sql.SQLException- Specified by:
getConnectionin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
getLogWriter
public java.io.PrintWriter getLogWriter() throws java.sql.SQLException- Specified by:
getLogWriterin interfacejavax.sql.CommonDataSource- Specified by:
getLogWriterin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
setLogWriter
public void setLogWriter(java.io.PrintWriter out) throws java.sql.SQLException- Specified by:
setLogWriterin interfacejavax.sql.CommonDataSource- Specified by:
setLogWriterin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
getLoginTimeout
public int getLoginTimeout() throws java.sql.SQLException- Specified by:
getLoginTimeoutin interfacejavax.sql.CommonDataSource- Specified by:
getLoginTimeoutin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
setLoginTimeout
public void setLoginTimeout(int seconds) throws java.sql.SQLException- Specified by:
setLoginTimeoutin interfacejavax.sql.CommonDataSource- Specified by:
setLoginTimeoutin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
unwrap
public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException- Specified by:
unwrapin interfacejava.sql.Wrapper- Throws:
java.sql.SQLException
-
isWrapperFor
public boolean isWrapperFor(java.lang.Class<?> iface) throws java.sql.SQLException- Specified by:
isWrapperForin interfacejava.sql.Wrapper- Throws:
java.sql.SQLException
-
getParentLogger
public java.util.logging.Logger getParentLogger()
- Specified by:
getParentLoggerin interfacejavax.sql.CommonDataSource
-
-