All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mchange.v2.sql.filter.SynchronizedFilterConnection Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
/*
 * Distributed as part of mchange-commons-java 0.2.11
 *
 * Copyright (C) 2015 Machinery For Change, Inc.
 *
 * Author: Steve Waldman 
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of EITHER:
 *
 *     1) The GNU Lesser General Public License (LGPL), version 2.1, as 
 *        published by the Free Software Foundation
 *
 * OR
 *
 *     2) The Eclipse Public License (EPL), version 1.0
 *
 * You may choose which license to accept if you wish to redistribute
 * or modify this work. You may offer derivatives of this work
 * under the license you have chosen, or you may provide the same
 * choice of license which you have been offered here.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received copies of both LGPL v2.1 and EPL v1.0
 * along with this software; see the files LICENSE-EPL and LICENSE-LGPL.
 * If not, the text of these licenses are currently available at
 *
 * LGPL v2.1: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
 *  EPL v1.0: http://www.eclipse.org/org/documents/epl-v10.php 
 * 
 */

package com.mchange.v2.sql.filter;

import java.lang.Class;
import java.lang.Object;
import java.lang.String;
import java.sql.Array;
import java.sql.Blob;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.NClob;
import java.sql.PreparedStatement;
import java.sql.SQLClientInfoException;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.SQLXML;
import java.sql.Savepoint;
import java.sql.Statement;
import java.sql.Struct;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.Executor;

/**
 * This class was generated by com.mchange.v2.codegen.intfc.DelegatorGenerator.
 */
public abstract class SynchronizedFilterConnection implements Connection
{
	protected Connection inner;
	
	
	private void __setInner( Connection inner )
	{
		this.inner = inner;
	}
	
	public SynchronizedFilterConnection(Connection inner)
	{ __setInner( inner ); }
	
	public SynchronizedFilterConnection()
	{}
	
	public synchronized void setInner( Connection inner )
	{ __setInner( inner ); }
	
	public synchronized Connection getInner()
	{ return inner; }
	
	public synchronized void commit() throws SQLException
	{
		inner.commit();
	}
	
	public synchronized void clearWarnings() throws SQLException
	{
		inner.clearWarnings();
	}
	
	public synchronized Array createArrayOf(String a, Object[] b) throws SQLException
	{
		return inner.createArrayOf(a, b);
	}
	
	public synchronized Blob createBlob() throws SQLException
	{
		return inner.createBlob();
	}
	
	public synchronized Clob createClob() throws SQLException
	{
		return inner.createClob();
	}
	
	public synchronized NClob createNClob() throws SQLException
	{
		return inner.createNClob();
	}
	
	public synchronized SQLXML createSQLXML() throws SQLException
	{
		return inner.createSQLXML();
	}
	
	public synchronized Statement createStatement(int a, int b, int c) throws SQLException
	{
		return inner.createStatement(a, b, c);
	}
	
	public synchronized Statement createStatement(int a, int b) throws SQLException
	{
		return inner.createStatement(a, b);
	}
	
	public synchronized Statement createStatement() throws SQLException
	{
		return inner.createStatement();
	}
	
	public synchronized Struct createStruct(String a, Object[] b) throws SQLException
	{
		return inner.createStruct(a, b);
	}
	
	public synchronized boolean getAutoCommit() throws SQLException
	{
		return inner.getAutoCommit();
	}
	
	public synchronized String getCatalog() throws SQLException
	{
		return inner.getCatalog();
	}
	
	public synchronized String getClientInfo(String a) throws SQLException
	{
		return inner.getClientInfo(a);
	}
	
	public synchronized Properties getClientInfo() throws SQLException
	{
		return inner.getClientInfo();
	}
	
	public synchronized int getHoldability() throws SQLException
	{
		return inner.getHoldability();
	}
	
	public synchronized DatabaseMetaData getMetaData() throws SQLException
	{
		return inner.getMetaData();
	}
	
	public synchronized int getNetworkTimeout() throws SQLException
	{
		return inner.getNetworkTimeout();
	}
	
	public synchronized String getSchema() throws SQLException
	{
		return inner.getSchema();
	}
	
	public synchronized int getTransactionIsolation() throws SQLException
	{
		return inner.getTransactionIsolation();
	}
	
	public synchronized Map getTypeMap() throws SQLException
	{
		return inner.getTypeMap();
	}
	
	public synchronized SQLWarning getWarnings() throws SQLException
	{
		return inner.getWarnings();
	}
	
	public synchronized boolean isClosed() throws SQLException
	{
		return inner.isClosed();
	}
	
	public synchronized String nativeSQL(String a) throws SQLException
	{
		return inner.nativeSQL(a);
	}
	
	public synchronized CallableStatement prepareCall(String a, int b, int c, int d) throws SQLException
	{
		return inner.prepareCall(a, b, c, d);
	}
	
	public synchronized CallableStatement prepareCall(String a, int b, int c) throws SQLException
	{
		return inner.prepareCall(a, b, c);
	}
	
	public synchronized CallableStatement prepareCall(String a) throws SQLException
	{
		return inner.prepareCall(a);
	}
	
	public synchronized PreparedStatement prepareStatement(String a, int b, int c, int d) throws SQLException
	{
		return inner.prepareStatement(a, b, c, d);
	}
	
	public synchronized PreparedStatement prepareStatement(String a, int b) throws SQLException
	{
		return inner.prepareStatement(a, b);
	}
	
	public synchronized PreparedStatement prepareStatement(String a, int[] b) throws SQLException
	{
		return inner.prepareStatement(a, b);
	}
	
	public synchronized PreparedStatement prepareStatement(String a, String[] b) throws SQLException
	{
		return inner.prepareStatement(a, b);
	}
	
	public synchronized PreparedStatement prepareStatement(String a) throws SQLException
	{
		return inner.prepareStatement(a);
	}
	
	public synchronized PreparedStatement prepareStatement(String a, int b, int c) throws SQLException
	{
		return inner.prepareStatement(a, b, c);
	}
	
	public synchronized void releaseSavepoint(Savepoint a) throws SQLException
	{
		inner.releaseSavepoint(a);
	}
	
	public synchronized void rollback() throws SQLException
	{
		inner.rollback();
	}
	
	public synchronized void rollback(Savepoint a) throws SQLException
	{
		inner.rollback(a);
	}
	
	public synchronized void setAutoCommit(boolean a) throws SQLException
	{
		inner.setAutoCommit(a);
	}
	
	public synchronized void setCatalog(String a) throws SQLException
	{
		inner.setCatalog(a);
	}
	
	public synchronized void setClientInfo(String a, String b) throws SQLClientInfoException
	{
		inner.setClientInfo(a, b);
	}
	
	public synchronized void setClientInfo(Properties a) throws SQLClientInfoException
	{
		inner.setClientInfo(a);
	}
	
	public synchronized void setHoldability(int a) throws SQLException
	{
		inner.setHoldability(a);
	}
	
	public synchronized void setNetworkTimeout(Executor a, int b) throws SQLException
	{
		inner.setNetworkTimeout(a, b);
	}
	
	public synchronized Savepoint setSavepoint() throws SQLException
	{
		return inner.setSavepoint();
	}
	
	public synchronized Savepoint setSavepoint(String a) throws SQLException
	{
		return inner.setSavepoint(a);
	}
	
	public synchronized void setSchema(String a) throws SQLException
	{
		inner.setSchema(a);
	}
	
	public synchronized void setTransactionIsolation(int a) throws SQLException
	{
		inner.setTransactionIsolation(a);
	}
	
	public synchronized void setTypeMap(Map a) throws SQLException
	{
		inner.setTypeMap(a);
	}
	
	public synchronized void setReadOnly(boolean a) throws SQLException
	{
		inner.setReadOnly(a);
	}
	
	public synchronized void close() throws SQLException
	{
		inner.close();
	}
	
	public synchronized boolean isValid(int a) throws SQLException
	{
		return inner.isValid(a);
	}
	
	public synchronized boolean isReadOnly() throws SQLException
	{
		return inner.isReadOnly();
	}
	
	public synchronized void abort(Executor a) throws SQLException
	{
		inner.abort(a);
	}
	
	public synchronized boolean isWrapperFor(Class a) throws SQLException
	{
		return inner.isWrapperFor(a);
	}
	
	public synchronized Object unwrap(Class a) throws SQLException
	{
		return inner.unwrap(a);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy