Uses of Interface
org.springframework.aop.framework.AopProxy

Packages that use AopProxy
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 AopProxy in org.springframework.aop.framework
 

Classes in org.springframework.aop.framework that implement AopProxy
 class Cglib2AopProxy
          CGLIB2-based AopProxy implementation for the Spring AOP framework.
(package private)  class JdkDynamicAopProxy
          JDK-based AopProxy implementation for the Spring AOP framework, based on JDK 1.3+ dynamic proxies.
 class ProxyFactory
          Factory for AOP proxies for programmatic use, rather than via a bean factory.
 

Methods in org.springframework.aop.framework that return AopProxy
protected  AopProxy AdvisedSupport.createAopProxy()
          Subclasses should call this to get a new AOP proxy.
 AopProxy DefaultAopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
           
 AopProxy AopProxyFactory.createAopProxy(AdvisedSupport advisedSupport)
          Return an AopProxy for the given AdvisedSupport object.
 

Methods in org.springframework.aop.framework with parameters of type AopProxy
protected  Object ProxyFactoryBean.getProxy(AopProxy aopProxy)
          Return the proxy object to expose.
 

Uses of AopProxy in org.springframework.transaction.interceptor
 

Methods in org.springframework.transaction.interceptor with parameters of type AopProxy
protected  Object TransactionProxyFactoryBean.getProxy(AopProxy aopProxy)
          Return the proxy object to expose.
 



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