Uses of Interface
org.apache.commons.proxy.Invoker

Packages that use Invoker
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.invoker This package contains some useful Invoker implementations. 
 

Uses of Invoker in org.apache.commons.proxy
 

Methods in org.apache.commons.proxy with parameters of type Invoker
 Object ProxyFactory.createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class[] proxyClasses)
          Creates a proxy which uses the provided Invoker to handle all method invocations.
 Object ProxyFactory.createInvokerProxy(Invoker invoker, Class[] proxyClasses)
          Creates a proxy which uses the provided Invoker to handle all method invocations.
 

Uses of Invoker in org.apache.commons.proxy.factory.cglib
 

Methods in org.apache.commons.proxy.factory.cglib with parameters of type Invoker
 Object CglibProxyFactory.createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class[] proxyClasses)
           
 

Uses of Invoker in org.apache.commons.proxy.factory.javassist
 

Methods in org.apache.commons.proxy.factory.javassist with parameters of type Invoker
 Object JavassistProxyFactory.createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class[] proxyClasses)
           
 

Uses of Invoker in org.apache.commons.proxy.invoker
 

Classes in org.apache.commons.proxy.invoker that implement Invoker
 class DuckTypingInvoker
          An invoker which supports "duck typing", meaning that it finds a matching method on the object returned from the target provider and invokes it.
 class InvocationHandlerAdapter
          An adapter class to adapt the JDK's InvocationHandler interface to Commons Proxy's Invoker interface.
 class NullInvoker
          An Invoker implementation which merely returns null for all method invocations.
 class XmlRpcInvoker
          Uses Apache XML-RPC to invoke methods on an XML-RPC service.
 



Copyright © 2005-2008 The Apache Software Foundation. All Rights Reserved.