Package com.p6spy.engine.common

Examples of com.p6spy.engine.common.ConnectionInformation


*/
public class P6LogConnectionInvocationHandler extends GenericInvocationHandler<Connection> {

  public P6LogConnectionInvocationHandler(Connection underlying) {
    super(underlying);
    ConnectionInformation connectionInformation = new ConnectionInformation();

    P6LogConnectionCommitDelegate commitDelegate = new P6LogConnectionCommitDelegate(connectionInformation);
    P6LogConnectionRollbackDelegate rollbackDelegate = new P6LogConnectionRollbackDelegate(connectionInformation);
    P6LogConnectionPrepareStatementDelegate prepareStatementDelegate = new P6LogConnectionPrepareStatementDelegate(connectionInformation);
    P6LogConnectionCreateStatementDelegate createStatementDelegate = new P6LogConnectionCreateStatementDelegate(connectionInformation);
View Full Code Here


*/
public class P6OutageConnectionInvocationHandler extends GenericInvocationHandler<Connection> {

  public P6OutageConnectionInvocationHandler(Connection underlying) {
    super(underlying);
    ConnectionInformation connectionInformation = new ConnectionInformation();

    P6OutageConnectionCommitDelegate commitDelegate = new P6OutageConnectionCommitDelegate();
    P6OutageConnectionRollbackDelegate rollbackDelegate = new P6OutageConnectionRollbackDelegate(connectionInformation);
    P6OutageConnectionCreateStatementDelegate createStatementDelegate = new P6OutageConnectionCreateStatementDelegate(connectionInformation);
    P6OutageConnectionPrepareStatementDelegate prepareStatementDelegate = new P6OutageConnectionPrepareStatementDelegate(connectionInformation);
View Full Code Here

TOP

Related Classes of com.p6spy.engine.common.ConnectionInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.