net.jrouter.ActionFactoryAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrouter Show documentation
Show all versions of jrouter Show documentation
jrouter是一个围绕对象方法基于责任链(拦截器)模式设计的开源轻量级Java容器。它专注于方法的映射、调用、拦截和结果处理,采用基于配置和注解的方式来抽取和收集程序中对象的方法(method)以用于路由映射,HTTP控制器,RPC,各种应用等。
package net.jrouter;
/**
* 提供设置{@link ActionFactory}的接口。
*/
public interface ActionFactoryAware {
/**
* Set {@link ActionFactory}.
*
* @param actionFactory ActionFactory object.
*/
void setActionFactory(ActionFactory actionFactory);
}