org.nutz.ioc.aop.config
接口 AopConfigration

所有已知实现类:
AbstractAopConfigration, AnnotationAopConfigration, ComboAopConfigration, JsonAopConfigration, XmlAopConfigration

public interface AopConfigration

配置Aop的通用接口

作者:
wendal(wendal1985@gmail.com)

字段摘要
static java.lang.String IOCNAME
          本对象在Ioc中的名字
 
方法摘要
 java.util.List<InterceptorPair> getInterceptorPairList(Ioc ioc, java.lang.Class<?> clazz)
          获取需要method与拦截器的对应关系,建议不要返回null
 

字段详细信息

IOCNAME

static final java.lang.String IOCNAME
本对象在Ioc中的名字

另请参见:
常量字段值
方法详细信息

getInterceptorPairList

java.util.List<InterceptorPair> getInterceptorPairList(Ioc ioc,
                                                       java.lang.Class<?> clazz)
获取需要method与拦截器的对应关系,建议不要返回null

参数:
ioc - 如果拦截器来自ioc容器,则需要提供这个参数
clazz - 需要拦截的类
返回:
method与拦截器的对应关系