public class ASMProxyFactory extends AbstractSubclassingProxyFactory
Constructor and Description |
---|
ASMProxyFactory() |
Modifier and Type | Method and Description |
---|---|
<T> T |
createDelegatorProxy(ClassLoader classLoader,
ObjectProvider<?> delegateProvider,
Class<?>... proxyClasses)
Creates a proxy which delegates to the object provided by
delegateProvider . |
<T> T |
createInterceptorProxy(ClassLoader classLoader,
Object target,
Interceptor interceptor,
Class<?>... proxyClasses)
Creates a proxy which passes through a
interceptor before eventually reaching the
target object. |
<T> T |
createInvokerProxy(ClassLoader classLoader,
Invoker invoker,
Class<?>... proxyClasses)
Creates a proxy which uses the provided
Invoker to handle all method invocations. |
protected static boolean |
isEqualsMethod(Method method) |
protected static boolean |
isHashCode(Method method) |
canProxy, getSuperclass, toInterfaces
createDelegatorProxy, createInterceptorProxy, createInvokerProxy
public ASMProxyFactory()
public <T> T createDelegatorProxy(ClassLoader classLoader, ObjectProvider<?> delegateProvider, Class<?>... proxyClasses)
ProxyFactory
delegateProvider
.classLoader
- the class loader to use when generating the proxydelegateProvider
- the delegate providerproxyClasses
- the interfaces that the proxy should implementdelegateProvider>
public <T> T createInterceptorProxy(ClassLoader classLoader, Object target, Interceptor interceptor, Class<?>... proxyClasses)
ProxyFactory
interceptor
before eventually reaching the
target
object.classLoader
- the class loader to use when generating the proxytarget
- the target objectinterceptor
- the method interceptorproxyClasses
- the interfaces that the proxy should implement.interceptor
before eventually reaching the
target
object.public <T> T createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class<?>... proxyClasses)
ProxyFactory
Invoker
to handle all method invocations.classLoader
- the class loader to use when generating the proxyinvoker
- the invokerproxyClasses
- the interfaces that the proxy should implementInvoker
to handle all method invocationsprotected static boolean isHashCode(Method method)
protected static boolean isEqualsMethod(Method method)
Copyright © 2005–2014 The Apache Software Foundation. All rights reserved.