|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ProxyFactory | |
|---|---|
| org.apache.commons.proxy | This package contains the primary API. |
| org.apache.commons.proxy.factory.cglib | This package contains the CGLIB-based ProxyFactory implementation. |
| org.apache.commons.proxy.factory.javassist | This package contains the Javassist-based ProxyFactory implementation. |
| org.apache.commons.proxy.factory.util | This package contains some classes useful for writing your own ProxyFactory implementation. |
| org.apache.commons.proxy.interceptor | This package contains some useful Interceptor implementations. |
| Uses of ProxyFactory in org.apache.commons.proxy |
|---|
| Methods in org.apache.commons.proxy with parameters of type ProxyFactory | |
|---|---|
static Object |
ProxyUtils.createNullObject(ProxyFactory proxyFactory,
Class[] proxyClasses)
Creates a "null object" which implements the proxyClasses. |
static Object |
ProxyUtils.createNullObject(ProxyFactory proxyFactory,
ClassLoader classLoader,
Class[] proxyClasses)
Creates a "null object" which implements the proxyClasses. |
| Uses of ProxyFactory in org.apache.commons.proxy.factory.cglib |
|---|
| Subclasses of ProxyFactory in org.apache.commons.proxy.factory.cglib | |
|---|---|
class |
CglibProxyFactory
A CGLIB-based ProxyFactory
implementation. |
| Uses of ProxyFactory in org.apache.commons.proxy.factory.javassist |
|---|
| Subclasses of ProxyFactory in org.apache.commons.proxy.factory.javassist | |
|---|---|
class |
JavassistProxyFactory
A Javassist-based ProxyFactory
implementation. |
| Uses of ProxyFactory in org.apache.commons.proxy.factory.util |
|---|
| Subclasses of ProxyFactory in org.apache.commons.proxy.factory.util | |
|---|---|
class |
AbstractSubclassingProxyFactory
A useful superclass for a ProxyFactory which supports subclassing rather than merely implementing interfaces. |
| Uses of ProxyFactory in org.apache.commons.proxy.interceptor |
|---|
| Methods in org.apache.commons.proxy.interceptor with parameters of type ProxyFactory | |
|---|---|
ObjectProvider |
InterceptorChain.createProxyProvider(ProxyFactory proxyFactory,
ClassLoader classLoader,
Object terminus,
Class[] proxyClasses)
Creates an ObjectProvider which will return a proxy that sends method invocations through this
chain of interceptors and ultimately arrive at the supplied terminus object. |
ObjectProvider |
InterceptorChain.createProxyProvider(ProxyFactory proxyFactory,
Object terminus)
Creates an ObjectProvider which will return a proxy that sends method invocations through this
chain of interceptors and ultimately arrive at the supplied terminus object. |
ObjectProvider |
InterceptorChain.createProxyProvider(ProxyFactory proxyFactory,
Object terminus,
Class[] proxyClasses)
Creates an ObjectProvider which will return a proxy that sends method invocations through this
chain of interceptors and ultimately arrive at the supplied terminus object. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||