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 HashMapCachingAdvisorChainFactory.adviceChanged(AdvisedSupport advisedSupport)
           
 AopProxy AopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
          Return an AopProxy for the given AdvisedSupport object.
 void AdvisedSupportListener.activated(AdvisedSupport advisedSupport)
          Invoked when first proxy is created.
 void AdvisedSupportListener.adviceChanged(AdvisedSupport advisedSupport)
          Invoked when advice is changed after a proxy is created.
 AopProxy DefaultAopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
           
static Class[] AopProxyUtils.completeProxiedInterfaces(AdvisedSupport advised)
          Get complete set of interfaces to proxy.
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.
static boolean AopProxyUtils.equalsAdvisors(AdvisedSupport a, AdvisedSupport b)
          Check equality of the advisors behind the given AdvisedSupport objects.
 void ProxyFactoryBean.activated(AdvisedSupport advisedSupport)
           
 void ProxyFactoryBean.adviceChanged(AdvisedSupport advisedSupport)
          Blow away and recache singleton on an advice change.
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
 

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



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