org.nutz.ioc.aop.config.impl
类 AbstractAopConfigration

java.lang.Object
  继承者 org.nutz.ioc.aop.config.impl.AbstractAopConfigration
所有已实现的接口:
AopConfigration
直接已知子类:
JsonAopConfigration, XmlAopConfigration

public abstract class AbstractAopConfigration
extends java.lang.Object
implements AopConfigration

作者:
wendal(wendal1985@gmail.com)

字段摘要
 
从接口 org.nutz.ioc.aop.config.AopConfigration 继承的字段
IOCNAME
 
构造方法摘要
AbstractAopConfigration()
           
 
方法摘要
 java.util.List<InterceptorPair> getInterceptorPairList(Ioc ioc, java.lang.Class<?> clazz)
          获取需要method与拦截器的对应关系,建议不要返回null
protected  MethodInterceptor getMethodInterceptor(Ioc ioc, java.lang.String interceptorName, boolean singleton)
           
 void setAopItemList(java.util.List<AopConfigrationItem> aopItemList)
           
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

AbstractAopConfigration

public AbstractAopConfigration()
方法详细信息

getInterceptorPairList

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

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

setAopItemList

public void setAopItemList(java.util.List<AopConfigrationItem> aopItemList)

getMethodInterceptor

protected MethodInterceptor getMethodInterceptor(Ioc ioc,
                                                 java.lang.String interceptorName,
                                                 boolean singleton)