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 * ChainProcess は、バッチ処理サブクラスの共通インターフェースです。 020 * ChainProcess を用いて、順次、バッチプロセスを実行することができます。 021 * 022 * @version 4.0 023 * @author Kazuhiko Hasegawa 024 * @since JDK5.0, 025 */ 026public interface ChainProcess extends HybsProcess { 027 028 /** 029 * 引数の ラインモデル を処理するメソッドです。 030 * 変換処理後の ラインモデル を返します。 031 * 後続処理を行わない場合(データのフィルタリングを行う場合)は、 032 * null データを返します。つまり、null データは、後続処理を行わない 033 * フラグの代わりにも使用しています。 034 * なお、変換処理後の ラインモデル と、オリジナルの ラインモデル が、 035 * 同一か、コピー(クローン)かは、各処理メソッド内で決めています。 036 * ドキュメントに明記されていない場合は、副作用が問題になる場合は、 037 * 各処理ごとに自分でコピー(クローン)して下さい。 038 * 039 * @param data オリジナルのラインモデル 040 * 041 * @return 処理変換後のラインモデル 042 */ 043 LineModel action( LineModel data ) ; 044}