Uses of Class
org.springframework.aop.framework.AopConfigException

Packages that use AopConfigException
org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces.  
org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation.  
 

Uses of AopConfigException in org.springframework.aop.framework
 

Methods in org.springframework.aop.framework that throw AopConfigException
 void AdvisedSupport.addInterceptor(org.aopalliance.intercept.Interceptor interceptor)
           
 void AdvisedSupport.addInterceptor(int pos, org.aopalliance.intercept.Interceptor interceptor)
          Cannot add IntroductionInterceptors this way.
 void AdvisedSupport.addAfterReturningAdvice(AfterReturningAdvice ara)
           
 void AdvisedSupport.addBeforeAdvice(MethodBeforeAdvice ba)
           
 void AdvisedSupport.addThrowsAdvice(ThrowsAdvice throwsAdvice)
           
 void AdvisedSupport.removeAdvisor(int index)
           
 boolean AdvisedSupport.removeInterceptor(org.aopalliance.intercept.Interceptor interceptor)
          Convenience method to remove an interceptor.
 void AdvisedSupport.addAdvisor(int pos, IntroductionAdvisor advisor)
           
 void AdvisedSupport.addAdvisor(int pos, Advisor advisor)
           
 boolean AdvisedSupport.replaceAdvisor(Advisor a, Advisor b)
          Replace the given advisor.
 void Advised.addInterceptor(org.aopalliance.intercept.Interceptor interceptor)
          Add the given AOP Alliance interceptor to the tail of the advice (interceptor) chain.
 void Advised.addInterceptor(int pos, org.aopalliance.intercept.Interceptor interceptor)
          Add the given AOP Alliance interceptor at the specified position in the interceptor chain.
 void Advised.addAfterReturningAdvice(AfterReturningAdvice afterReturningAdvice)
          Add an AfterReturningAdvice to the tail of the advice chain
 void Advised.addBeforeAdvice(MethodBeforeAdvice beforeAdvice)
          Add a MethodBeforeAdvice to the tail of the advice chain
 void Advised.addThrowsAdvice(ThrowsAdvice throwsAdvice)
          Add a ThrowsAdvice to the tail of the advice chain
 void Advised.addAdvisor(Advisor advisor)
          Add an Advisor at the end of the advisor chain.
 void Advised.addAdvisor(int pos, Advisor advisor)
          Add an Advisor at the specified position in the chain
 boolean Advised.removeAdvisor(Advisor advisor)
          Remove the given advisor
 void Advised.removeAdvisor(int index)
          Remove the advisor at the given index
 boolean Advised.replaceAdvisor(Advisor a, Advisor b)
          Replace the given advisor.
 AopProxy DefaultAopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
           
 AopProxy AopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
          Return an AopProxy for the given AdvisedSupport object
 

Constructors in org.springframework.aop.framework that throw AopConfigException
ProxyFactory(java.lang.Object target)
          Proxy all interfaces of the given target.
 

Uses of AopConfigException in org.springframework.transaction.interceptor
 

Methods in org.springframework.transaction.interceptor that throw AopConfigException
 void TransactionProxyFactoryBean.afterPropertiesSet()
           
 



Copyright (C) 2003-2004 The Spring Framework Project.