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

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

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

import java.util.List;

import nablarch.core.util.annotation.Published;

/**
 * ハンドラリストの組み立てを行うインタフェース。
 *
 * @author Koichi Asano
 */
@Published(tag = "architect")
public interface PipelineListBuilder {

    /**
     * ハンドラリストを取得する。
     * @return ハンドラリスト
     */
    List getHandlerList();

}