001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.fukurou.process; 017 018/** 019 * FirstProcess は、バッチ処理サブクラスの共通インターフェースです。 020 * FirstProcess を用いて、順次、バッチプロセスを実行することができます。 021 * この処理は、バッチJOB起動時の最初に呼ばれます。このクラスより、行データとして 022 * LineModel を作成し、後続の ChainProcess クラスに処理データを渡します。 023 * 024 * @version 4.0 025 * @author Kazuhiko Hasegawa 026 * @since JDK5.0, 027 */ 028public interface FirstProcess extends HybsProcess { 029 030 /** 031 * このデータの処理において、次の処理が出来るかどうかを問い合わせます。 032 * この呼び出し1回毎に、次のデータを取得する準備を行います。 033 * 034 * @return 処理できる:true / 処理できない:false 035 */ 036 boolean next() ; 037 038 /** 039 * 最初に、行データである LineModel を作成します 040 * FirstProcess は、次々と処理をチェインしていく最初の行データを 041 * 作成して、後続の ChainProcess クラスに処理データを渡します。 042 * 043 * @param rowNo 処理中の行番号 044 * 045 * @return 処理変換後のLineModel 046 */ 047 LineModel makeLineModel( int rowNo ) ; 048 049}