Class TestXAConnection
- java.lang.Object
-
- com.ibm.fhir.persistence.proxy.rm.test.TestXAConnection
-
- All Implemented Interfaces:
PooledConnection
,XAConnection
public class TestXAConnection extends Object implements XAConnection
This class acts as a wrapper class for an XAConnection instance, and is used to force failures during testing.
-
-
Constructor Summary
Constructors Constructor Description TestXAConnection(XAConnection conn, String dsLabel, String failStep, int failCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addConnectionEventListener(ConnectionEventListener listener)
void
addStatementEventListener(StatementEventListener listener)
void
close()
Connection
getConnection()
XAResource
getXAResource()
void
removeConnectionEventListener(ConnectionEventListener listener)
void
removeStatementEventListener(StatementEventListener listener)
-
-
-
Constructor Detail
-
TestXAConnection
public TestXAConnection(XAConnection conn, String dsLabel, String failStep, int failCount)
-
-
Method Detail
-
getXAResource
public XAResource getXAResource() throws SQLException
- Specified by:
getXAResource
in interfaceXAConnection
- Throws:
SQLException
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnection
in interfacePooledConnection
- Throws:
SQLException
-
close
public void close() throws SQLException
- Specified by:
close
in interfacePooledConnection
- Throws:
SQLException
-
addConnectionEventListener
public void addConnectionEventListener(ConnectionEventListener listener)
- Specified by:
addConnectionEventListener
in interfacePooledConnection
-
removeConnectionEventListener
public void removeConnectionEventListener(ConnectionEventListener listener)
- Specified by:
removeConnectionEventListener
in interfacePooledConnection
-
addStatementEventListener
public void addStatementEventListener(StatementEventListener listener)
- Specified by:
addStatementEventListener
in interfacePooledConnection
-
removeStatementEventListener
public void removeStatementEventListener(StatementEventListener listener)
- Specified by:
removeStatementEventListener
in interfacePooledConnection
-
-