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

nablarch.fw.invoker.HandlerListInvoker Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package nablarch.fw.invoker;

import nablarch.core.util.annotation.Published;
import nablarch.fw.ExecutionContext;

/**
 * ハンドラリストの起動を行うインタフェース。
 *
 * @author T.Kawasaki
 * @param     処理対象データ型
 * @param   処理結果データ型
 */
@Published(tag = "architect")
public interface HandlerListInvoker {

    /**
     * ハンドラリストの起動を行う。
     *
     * @param input 入力データ
     * @param context 実行コンテキスト
     * @return 出力データ
     */
    TResult invokeHandlerList(TData input, ExecutionContext context);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy