Uses of Interface
org.proxy4j.core.ProxyHandler
-
Packages that use ProxyHandler Package Description org.proxy4j.core org.proxy4j.core.cglib org.proxy4j.core.javassist org.proxy4j.core.jdk -
-
Uses of ProxyHandler in org.proxy4j.core
Methods in org.proxy4j.core with parameters of type ProxyHandler Modifier and Type Method Description ObjectProxyFactory. createProxy(Class<?>[] proxyInterfaces, ProxyHandler<?> handler)Creates a proxy that implements multiple interfaces where invocations on that proxy are passed to a singleinvokemethod on theProxyHandler.<T> TProxyFactory. createProxy(Class<T> proxyClass, ProxyHandler<T> handler)Creates a proxy where method invocations on the proxy are passed to a singleinvokemethod on theProxyHandler. -
Uses of ProxyHandler in org.proxy4j.core.cglib
Methods in org.proxy4j.core.cglib with parameters of type ProxyHandler Modifier and Type Method Description ObjectCglibProxyFactory. createProxy(Class<?>[] proxyInterfaces, ProxyHandler<?> handler)The proxy classes must be interfaces, or anGenerationExceptionwill be thrown.<T> TCglibProxyFactory. createProxy(Class<T> proxyClass, ProxyHandler<T> handler)The proxy class in this implementation does not have to be an interface. -
Uses of ProxyHandler in org.proxy4j.core.javassist
Methods in org.proxy4j.core.javassist with parameters of type ProxyHandler Modifier and Type Method Description ObjectJavassistProxyFactory. createProxy(Class<?>[] proxyInterfaces, ProxyHandler<?> handler)<T> TJavassistProxyFactory. createProxy(Class<T> proxyType, ProxyHandler<T> handler) -
Uses of ProxyHandler in org.proxy4j.core.jdk
Methods in org.proxy4j.core.jdk with parameters of type ProxyHandler Modifier and Type Method Description ObjectJdkProxyFactory. createProxy(Class<?>[] proxyInterfaces, ProxyHandler<?> handler)<T> TJdkProxyFactory. createProxy(Class<T> proxyInterface, ProxyHandler<T> handler)The proxy class (first argument) must be an interface, or anIllegalArgumentExceptionwill be thrown.
-