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

Packages that use AopConfigException
org.springframework.aop Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces. 
org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces. 
org.springframework.aop.framework.adapter SPI package allowing Spring AOP framework to handle arbitrary advice types. 
org.springframework.aop.support Convenience classes for using Spring's AOP API. 
org.springframework.aop.target This package contains implementations of the org.springframework.aop.TargetSource interface. 
org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation. 
 

Uses of AopConfigException in org.springframework.aop
 

Methods in org.springframework.aop that throw AopConfigException
 void IntroductionAdvisor.validateInterfaces()
          Can the advised interfaces be implemented by the introduction advice? Invoked before adding an IntroductionAdvisor.
 

Uses of AopConfigException in org.springframework.aop.framework
 

Methods in org.springframework.aop.framework that throw AopConfigException
 AopProxy DefaultAopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
           
 AopProxy AopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
          Return an AopProxy for the given AdvisedSupport object
 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.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 interceptor to the tail of the advice (interceptor) chain.
 void Advised.addInterceptor(int pos, org.aopalliance.intercept.Interceptor interceptor)
          Add an interceptor at the specified position in the interceptor 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.
 

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.aop.framework.adapter
 

Subclasses of AopConfigException in org.springframework.aop.framework.adapter
 class UnknownAdviceTypeException
          Exception thrown when an attempt is made to use an unsupported Advisor or Advice type.
 

Uses of AopConfigException in org.springframework.aop.support
 

Methods in org.springframework.aop.support that throw AopConfigException
 void DefaultIntroductionAdvisor.addInterface(java.lang.Class intf)
           
 void DefaultIntroductionAdvisor.validateInterfaces()
           
 

Constructors in org.springframework.aop.support that throw AopConfigException
DefaultIntroductionAdvisor(IntroductionInterceptor interceptor, java.lang.Class clazz)
           
 

Uses of AopConfigException in org.springframework.aop.target
 

Methods in org.springframework.aop.target that throw AopConfigException
 java.lang.Object HotSwappableTargetSource.swap(java.lang.Object newTarget)
          Swap the target, returning the old 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.