Class SimpleConnectionHandle
- java.lang.Object
- org.springframework.jdbc.datasource.SimpleConnectionHandle
- All Implemented Interfaces:
ConnectionHandle
public class SimpleConnectionHandle extends Object implements ConnectionHandle
Simple implementation of theConnectionHandleinterface, containing a given JDBC Connection.- Since:
- 1.1
- Author:
- Juergen Hoeller
Constructor Summary
Constructors Constructor Description SimpleConnectionHandle(Connection connection)Create a new SimpleConnectionHandle for the given Connection.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectiongetConnection()Return the specified Connection as-is.StringtoString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.jdbc.datasource.ConnectionHandle
releaseConnection
Constructor Detail
SimpleConnectionHandle
public SimpleConnectionHandle(Connection connection)
Create a new SimpleConnectionHandle for the given Connection.- Parameters:
connection- the JDBC Connection
Method Detail
getConnection
public Connection getConnection()
Return the specified Connection as-is.- Specified by:
getConnectionin interfaceConnectionHandle