org.springframework.aop.framework
Interface AopProxy

All Known Implementing Classes:
Cglib2AopProxy, JdkDynamicAopProxy

public interface AopProxy

Author:
Rod Johnson

Method Summary
 java.lang.Object getProxy()
          Creates a new Proxy object for the given object, proxying the given interface.
 java.lang.Object getProxy(java.lang.ClassLoader cl)
          Creates a new Proxy object for the given object, proxying the given interface.
 

Method Detail

getProxy

public java.lang.Object getProxy()
Creates a new Proxy object for the given object, proxying the given interface. Uses the thread context class loader.


getProxy

public java.lang.Object getProxy(java.lang.ClassLoader cl)
Creates a new Proxy object for the given object, proxying the given interface. Uses the given class loader.



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