org.jooq.tools.jdbc.DefaultCallableStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-retries-plugin Show documentation
Show all versions of payment-retries-plugin Show documentation
Kill Bill Payment Retries plugin
The newest version!
/*
* Copyright (c) 2009-2016, Data Geekery GmbH (http://www.datageekery.com)
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.tools.jdbc;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Date;
import java.sql.NClob;
import java.sql.Ref;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;
/**
* A default JDBC CallableStatement implementation delegating all JDBC 4.0 calls
* to an internal delegate.
*
* @author Lukas Eder
*/
public class DefaultCallableStatement extends DefaultPreparedStatement implements CallableStatement {
public DefaultCallableStatement(CallableStatement delegate) {
super(delegate);
}
@Override
public CallableStatement getDelegate() {
return (CallableStatement) super.getDelegate();
}
// ------------------------------------------------------------------------
// XXX Other methods
// ------------------------------------------------------------------------
@Override
public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException {
getDelegate().registerOutParameter(parameterIndex, sqlType);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException {
getDelegate().registerOutParameter(parameterIndex, sqlType, scale);
}
@Override
public boolean wasNull() throws SQLException {
return getDelegate().wasNull();
}
@Override
public String getString(int parameterIndex) throws SQLException {
return getDelegate().getString(parameterIndex);
}
@Override
public boolean getBoolean(int parameterIndex) throws SQLException {
return getDelegate().getBoolean(parameterIndex);
}
@Override
public byte getByte(int parameterIndex) throws SQLException {
return getDelegate().getByte(parameterIndex);
}
@Override
public short getShort(int parameterIndex) throws SQLException {
return getDelegate().getShort(parameterIndex);
}
@Override
public int getInt(int parameterIndex) throws SQLException {
return getDelegate().getInt(parameterIndex);
}
@Override
public long getLong(int parameterIndex) throws SQLException {
return getDelegate().getLong(parameterIndex);
}
@Override
public float getFloat(int parameterIndex) throws SQLException {
return getDelegate().getFloat(parameterIndex);
}
@Override
public double getDouble(int parameterIndex) throws SQLException {
return getDelegate().getDouble(parameterIndex);
}
@Override
@Deprecated
public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException {
return getDelegate().getBigDecimal(parameterIndex, scale);
}
@Override
public byte[] getBytes(int parameterIndex) throws SQLException {
return getDelegate().getBytes(parameterIndex);
}
@Override
public Date getDate(int parameterIndex) throws SQLException {
return getDelegate().getDate(parameterIndex);
}
@Override
public Time getTime(int parameterIndex) throws SQLException {
return getDelegate().getTime(parameterIndex);
}
@Override
public Timestamp getTimestamp(int parameterIndex) throws SQLException {
return getDelegate().getTimestamp(parameterIndex);
}
@Override
public Object getObject(int parameterIndex) throws SQLException {
return getDelegate().getObject(parameterIndex);
}
@Override
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {
return getDelegate().getBigDecimal(parameterIndex);
}
@Override
public Object getObject(int parameterIndex, Map> map) throws SQLException {
return getDelegate().getObject(parameterIndex, map);
}
@Override
public Ref getRef(int parameterIndex) throws SQLException {
return getDelegate().getRef(parameterIndex);
}
@Override
public Blob getBlob(int parameterIndex) throws SQLException {
return getDelegate().getBlob(parameterIndex);
}
@Override
public Clob getClob(int parameterIndex) throws SQLException {
return getDelegate().getClob(parameterIndex);
}
@Override
public Array getArray(int parameterIndex) throws SQLException {
return getDelegate().getArray(parameterIndex);
}
@Override
public Date getDate(int parameterIndex, Calendar cal) throws SQLException {
return getDelegate().getDate(parameterIndex, cal);
}
@Override
public Time getTime(int parameterIndex, Calendar cal) throws SQLException {
return getDelegate().getTime(parameterIndex, cal);
}
@Override
public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException {
return getDelegate().getTimestamp(parameterIndex, cal);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType, String typeName) throws SQLException {
getDelegate().registerOutParameter(parameterIndex, sqlType, typeName);
}
@Override
public void registerOutParameter(String parameterName, int sqlType) throws SQLException {
getDelegate().registerOutParameter(parameterName, sqlType);
}
@Override
public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException {
getDelegate().registerOutParameter(parameterName, sqlType, scale);
}
@Override
public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException {
getDelegate().registerOutParameter(parameterName, sqlType, typeName);
}
@Override
public URL getURL(int parameterIndex) throws SQLException {
return getDelegate().getURL(parameterIndex);
}
@Override
public void setURL(String parameterName, URL val) throws SQLException {
getDelegate().setURL(parameterName, val);
}
@Override
public void setNull(String parameterName, int sqlType) throws SQLException {
getDelegate().setNull(parameterName, sqlType);
}
@Override
public void setBoolean(String parameterName, boolean x) throws SQLException {
getDelegate().setBoolean(parameterName, x);
}
@Override
public void setByte(String parameterName, byte x) throws SQLException {
getDelegate().setByte(parameterName, x);
}
@Override
public void setShort(String parameterName, short x) throws SQLException {
getDelegate().setShort(parameterName, x);
}
@Override
public void setInt(String parameterName, int x) throws SQLException {
getDelegate().setInt(parameterName, x);
}
@Override
public void setLong(String parameterName, long x) throws SQLException {
getDelegate().setLong(parameterName, x);
}
@Override
public void setFloat(String parameterName, float x) throws SQLException {
getDelegate().setFloat(parameterName, x);
}
@Override
public void setDouble(String parameterName, double x) throws SQLException {
getDelegate().setDouble(parameterName, x);
}
@Override
public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
getDelegate().setBigDecimal(parameterName, x);
}
@Override
public void setString(String parameterName, String x) throws SQLException {
getDelegate().setString(parameterName, x);
}
@Override
public void setBytes(String parameterName, byte[] x) throws SQLException {
getDelegate().setBytes(parameterName, x);
}
@Override
public void setDate(String parameterName, Date x) throws SQLException {
getDelegate().setDate(parameterName, x);
}
@Override
public void setTime(String parameterName, Time x) throws SQLException {
getDelegate().setTime(parameterName, x);
}
@Override
public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
getDelegate().setTimestamp(parameterName, x);
}
@Override
public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
getDelegate().setAsciiStream(parameterName, x, length);
}
@Override
public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
getDelegate().setBinaryStream(parameterName, x, length);
}
@Override
public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {
getDelegate().setObject(parameterName, x, targetSqlType, scale);
}
@Override
public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {
getDelegate().setObject(parameterName, x, targetSqlType);
}
@Override
public void setObject(String parameterName, Object x) throws SQLException {
getDelegate().setObject(parameterName, x);
}
@Override
public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
getDelegate().setCharacterStream(parameterName, reader, length);
}
@Override
public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
getDelegate().setDate(parameterName, x, cal);
}
@Override
public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
getDelegate().setTime(parameterName, x, cal);
}
@Override
public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
getDelegate().setTimestamp(parameterName, x, cal);
}
@Override
public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
getDelegate().setNull(parameterName, sqlType, typeName);
}
@Override
public String getString(String parameterName) throws SQLException {
return getDelegate().getString(parameterName);
}
@Override
public boolean getBoolean(String parameterName) throws SQLException {
return getDelegate().getBoolean(parameterName);
}
@Override
public byte getByte(String parameterName) throws SQLException {
return getDelegate().getByte(parameterName);
}
@Override
public short getShort(String parameterName) throws SQLException {
return getDelegate().getShort(parameterName);
}
@Override
public int getInt(String parameterName) throws SQLException {
return getDelegate().getInt(parameterName);
}
@Override
public long getLong(String parameterName) throws SQLException {
return getDelegate().getLong(parameterName);
}
@Override
public float getFloat(String parameterName) throws SQLException {
return getDelegate().getFloat(parameterName);
}
@Override
public double getDouble(String parameterName) throws SQLException {
return getDelegate().getDouble(parameterName);
}
@Override
public byte[] getBytes(String parameterName) throws SQLException {
return getDelegate().getBytes(parameterName);
}
@Override
public Date getDate(String parameterName) throws SQLException {
return getDelegate().getDate(parameterName);
}
@Override
public Time getTime(String parameterName) throws SQLException {
return getDelegate().getTime(parameterName);
}
@Override
public Timestamp getTimestamp(String parameterName) throws SQLException {
return getDelegate().getTimestamp(parameterName);
}
@Override
public Object getObject(String parameterName) throws SQLException {
return getDelegate().getObject(parameterName);
}
@Override
public BigDecimal getBigDecimal(String parameterName) throws SQLException {
return getDelegate().getBigDecimal(parameterName);
}
@Override
public Object getObject(String parameterName, Map> map) throws SQLException {
return getDelegate().getObject(parameterName, map);
}
@Override
public Ref getRef(String parameterName) throws SQLException {
return getDelegate().getRef(parameterName);
}
@Override
public Blob getBlob(String parameterName) throws SQLException {
return getDelegate().getBlob(parameterName);
}
@Override
public Clob getClob(String parameterName) throws SQLException {
return getDelegate().getClob(parameterName);
}
@Override
public Array getArray(String parameterName) throws SQLException {
return getDelegate().getArray(parameterName);
}
@Override
public Date getDate(String parameterName, Calendar cal) throws SQLException {
return getDelegate().getDate(parameterName, cal);
}
@Override
public Time getTime(String parameterName, Calendar cal) throws SQLException {
return getDelegate().getTime(parameterName, cal);
}
@Override
public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException {
return getDelegate().getTimestamp(parameterName, cal);
}
@Override
public URL getURL(String parameterName) throws SQLException {
return getDelegate().getURL(parameterName);
}
@Override
public RowId getRowId(int parameterIndex) throws SQLException {
return getDelegate().getRowId(parameterIndex);
}
@Override
public RowId getRowId(String parameterName) throws SQLException {
return getDelegate().getRowId(parameterName);
}
@Override
public void setRowId(String parameterName, RowId x) throws SQLException {
getDelegate().setRowId(parameterName, x);
}
@Override
public void setNString(String parameterName, String value) throws SQLException {
getDelegate().setNString(parameterName, value);
}
@Override
public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {
getDelegate().setNCharacterStream(parameterName, value, length);
}
@Override
public void setNClob(String parameterName, NClob value) throws SQLException {
getDelegate().setNClob(parameterName, value);
}
@Override
public void setClob(String parameterName, Reader reader, long length) throws SQLException {
getDelegate().setClob(parameterName, reader, length);
}
@Override
public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
getDelegate().setBlob(parameterName, inputStream, length);
}
@Override
public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
getDelegate().setNClob(parameterName, reader, length);
}
@Override
public NClob getNClob(int parameterIndex) throws SQLException {
return getDelegate().getNClob(parameterIndex);
}
@Override
public NClob getNClob(String parameterName) throws SQLException {
return getDelegate().getNClob(parameterName);
}
@Override
public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
getDelegate().setSQLXML(parameterName, xmlObject);
}
@Override
public SQLXML getSQLXML(int parameterIndex) throws SQLException {
return getDelegate().getSQLXML(parameterIndex);
}
@Override
public SQLXML getSQLXML(String parameterName) throws SQLException {
return getDelegate().getSQLXML(parameterName);
}
@Override
public String getNString(int parameterIndex) throws SQLException {
return getDelegate().getNString(parameterIndex);
}
@Override
public String getNString(String parameterName) throws SQLException {
return getDelegate().getNString(parameterName);
}
@Override
public Reader getNCharacterStream(int parameterIndex) throws SQLException {
return getDelegate().getNCharacterStream(parameterIndex);
}
@Override
public Reader getNCharacterStream(String parameterName) throws SQLException {
return getDelegate().getNCharacterStream(parameterName);
}
@Override
public Reader getCharacterStream(int parameterIndex) throws SQLException {
return getDelegate().getCharacterStream(parameterIndex);
}
@Override
public Reader getCharacterStream(String parameterName) throws SQLException {
return getDelegate().getCharacterStream(parameterName);
}
@Override
public void setBlob(String parameterName, Blob x) throws SQLException {
getDelegate().setBlob(parameterName, x);
}
@Override
public void setClob(String parameterName, Clob x) throws SQLException {
getDelegate().setClob(parameterName, x);
}
@Override
public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException {
getDelegate().setAsciiStream(parameterName, x, length);
}
@Override
public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException {
getDelegate().setBinaryStream(parameterName, x, length);
}
@Override
public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException {
getDelegate().setCharacterStream(parameterName, reader, length);
}
@Override
public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
getDelegate().setAsciiStream(parameterName, x);
}
@Override
public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
getDelegate().setBinaryStream(parameterName, x);
}
@Override
public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
getDelegate().setCharacterStream(parameterName, reader);
}
@Override
public void setNCharacterStream(String parameterName, Reader value) throws SQLException {
getDelegate().setNCharacterStream(parameterName, value);
}
@Override
public void setClob(String parameterName, Reader reader) throws SQLException {
getDelegate().setClob(parameterName, reader);
}
@Override
public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
getDelegate().setBlob(parameterName, inputStream);
}
@Override
public void setNClob(String parameterName, Reader reader) throws SQLException {
getDelegate().setNClob(parameterName, reader);
}
}