/* * Copyright 2004-2015 the Seasar Foundation and the Others. * * 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. */ package org.seasar.extension.jdbc.query; import org.seasar.extension.jdbc.SqlProcedureCall; import org.seasar.extension.jdbc.annotation.InOut; import org.seasar.extension.jdbc.annotation.Out; import org.seasar.extension.jdbc.manager.JdbcManagerImplementor; /** * {@link SqlProcedureCall}の実装クラスです。 * * @author higa */ public class SqlProcedureCallImpl extends AbstractProcedureCall<SqlProcedureCall> implements SqlProcedureCall { /** * {@link SqlProcedureCallImpl}を作成します。 * * @param jdbcManager * 内部的なJDBCマネージャ * @param sql * SQL * @see #SqlProcedureCallImpl(JdbcManagerImplementor, String, Object) */ public SqlProcedureCallImpl(JdbcManagerImplementor jdbcManager, String sql) { this(jdbcManager, sql, null); } /** * {@link SqlProcedureCallImpl}を作成します。 * * @param jdbcManager * 内部的なJDBCマネージャ * @param sql * SQL * @param param * <p> * パラメータです。 * </p> * <p> * INパラメータが1つしかない場合は、数値や文字列などを直接指定します。 それ以外は、JavaBeansを指定します。 * </p> * <p> * プロシージャを呼び出すバインド変数の順番にJavaBeansのフィールドを定義します。 <code>OUT</code>パラメータのフィールドには{@link Out}アノテーションを指定します。 * <code>IN OUT</code>パラメータのフィールドには{@link InOut}アノテーションを指定します。 * いずれのアノテーションも付けられていない場合は、<code>IN</code>パラメータになります。 * </p> * <p> * プロシージャが結果セットを返す場合、フィールドの型は<code>List<レコードの型></code>にします。 * </p> * <p> * 継承もとのクラスのフィールドは認識しません。 * </p> */ public SqlProcedureCallImpl(JdbcManagerImplementor jdbcManager, String sql, Object param) { super(jdbcManager); if (sql == null) { throw new NullPointerException("sql"); } this.executedSql = sql; this.parameter = param; } @Override protected void prepare(String methodName) { prepareCallerClassAndMethodName(methodName); prepareParameter(); } }