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

Packages that use AdvisedSupport
org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces. 
 

Uses of AdvisedSupport in org.springframework.aop.framework
 

Subclasses of AdvisedSupport in org.springframework.aop.framework
 class ProxyFactory
          Factory for AOP proxies for programmatic use, rather than via a bean factory.
 class ProxyFactoryBean
          FactoryBean implementation for use to source AOP proxies from a Spring BeanFactory.
 

Fields in org.springframework.aop.framework declared as AdvisedSupport
protected  AdvisedSupport Cglib2AopProxy.advised
          Config used to configure this proxy
 

Methods in org.springframework.aop.framework with parameters of type AdvisedSupport
 void HashMapCachingAdvisorChainFactory.activated(AdvisedSupport advisedSupport)
           
 void AdvisedSupportListener.activated(AdvisedSupport advisedSupport)
          Invoked when first proxy is created.
 void ProxyFactoryBean.activated(AdvisedSupport advisedSupport)
           
 void HashMapCachingAdvisorChainFactory.adviceChanged(AdvisedSupport advisedSupport)
           
 void AdvisedSupportListener.adviceChanged(AdvisedSupport advisedSupport)
          Invoked when advice is changed after a proxy is created.
 void ProxyFactoryBean.adviceChanged(AdvisedSupport advisedSupport)
          Blow away and recache singleton on an advice change.
static Class[] AopProxyUtils.completeProxiedInterfaces(AdvisedSupport advised)
          Get complete set of interfaces to proxy.
protected  void AdvisedSupport.copyConfigurationFrom(AdvisedSupport other)
          Call this method on a new instance created by the no-arg constructor to create an independent copy of the configuration from the other.
protected  void AdvisedSupport.copyConfigurationFrom(AdvisedSupport other, TargetSource ts, List pAdvisors)
          Take interfaces and ProxyConfig configuration from the other AdvisedSupport, but allow substitution of a fresh TargetSource and interceptor chain
 AopProxy AopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
          Return an AopProxy for the given AdvisedSupport object.
 AopProxy DefaultAopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
           
static boolean AopProxyUtils.equalsAdvisors(AdvisedSupport a, AdvisedSupport b)
          Check equality of the advisors behind the given AdvisedSupport objects.
static boolean AopProxyUtils.equalsInProxy(AdvisedSupport a, AdvisedSupport b)
          Check equality of the proxies behind the given AdvisedSupport objects.
static boolean AopProxyUtils.equalsProxiedInterfaces(AdvisedSupport a, AdvisedSupport b)
          Check equality of the proxied interfaces behind the given AdvisedSupport objects.
 

Constructors in org.springframework.aop.framework with parameters of type AdvisedSupport
Cglib2AopProxy(AdvisedSupport config)
          Create a new Cglib2AopProxy for the given config.
JdkDynamicAopProxy(AdvisedSupport config)
          Construct a new JDK proxy.
 



Copyright (c) 2002-2005 The Spring Framework Project.