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

nablarch.fw.web.handler.MethodBinderFactory Maven / Gradle / Ivy

The newest version!
package nablarch.fw.web.handler;

import nablarch.core.util.annotation.Published;
import nablarch.fw.MethodBinder;
import nablarch.fw.web.HttpRequest;

/**
 * {@link MethodBinder}のファクトリクラス。
 *
 * @author Naoki Yamamoto
 * @param  レスポンス型
 */
@Published(tag = "architect")
public interface MethodBinderFactory {

    /**
     * {@link MethodBinder}を生成する。
     *
     * @param methodName ディスパッチするメソッド名
     * @return {@link MethodBinder}インスタンス
     */
    MethodBinder create(final String methodName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy