Java Code Examples for javax.sql.XAConnection#addConnectionEventListener()

The following examples show how to use javax.sql.XAConnection#addConnectionEventListener() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RMXAConnectionResource.java    From FHIR with Apache License 2.0 5 votes vote down vote up
@Override
public void addConnectionEventListener(ConnectionEventListener listener) {
    log.entering(this.getClass().getName(), "addConnectionEventListener");
    try {
        // Drive the method calls to each of the proxied XAConnections.
        List<XAConnection> connections = getProxiedXAConnections();
        for (XAConnection connection : connections) {
            connection.addConnectionEventListener(listener);
        }
    } finally {
        log.exiting(this.getClass().getName(), "addConnectionEventListener");
    }
}
 
Example 2
Source File: XADataSourceImpl.java    From ByteJTA with GNU Lesser General Public License v3.0 5 votes vote down vote up
public XAConnection getXAConnection() throws SQLException {
	XAConnection delegate = this.xaDataSource.getXAConnection();

	XAConnectionImpl managed = new XAConnectionImpl();
	managed.setIdentifier(this.identifier);
	managed.setDelegate(delegate);

	delegate.addConnectionEventListener(managed);
	delegate.addStatementEventListener(managed);

	return managed;
}
 
Example 3
Source File: XADataSourceImpl.java    From ByteJTA with GNU Lesser General Public License v3.0 5 votes vote down vote up
public XAConnection getXAConnection(String user, String password) throws SQLException {
	XAConnection delegate = this.xaDataSource.getXAConnection(user, password);

	XAConnectionImpl managed = new XAConnectionImpl();
	managed.setIdentifier(this.identifier);
	managed.setDelegate(delegate);

	delegate.addConnectionEventListener(managed);
	delegate.addStatementEventListener(managed);

	return managed;
}