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

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

Uses of Interceptor in org.apache.commons.proxy
 

Methods in org.apache.commons.proxy with parameters of type Interceptor
 Object ProxyFactory.createInterceptorProxy(ClassLoader classLoader, Object target, Interceptor interceptor, Class[] proxyClasses)
          Creates a proxy which passes through a interceptor before eventually reaching the target object.
 Object ProxyFactory.createInterceptorProxy(Object target, Interceptor interceptor, Class[] proxyClasses)
          Creates a proxy which passes through a interceptor before eventually reaching the target object.
 

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

Methods in org.apache.commons.proxy.factory.cglib with parameters of type Interceptor
 Object CglibProxyFactory.createInterceptorProxy(ClassLoader classLoader, Object target, Interceptor interceptor, Class[] proxyClasses)
           
 

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

Methods in org.apache.commons.proxy.factory.javassist with parameters of type Interceptor
 Object JavassistProxyFactory.createInterceptorProxy(ClassLoader classLoader, Object target, Interceptor interceptor, Class[] proxyClasses)
           
 

Uses of Interceptor in org.apache.commons.proxy.interceptor
 

Classes in org.apache.commons.proxy.interceptor that implement Interceptor
 class ExecutorInterceptor
          A method interceptor that uses an Executor to execute the method invocation.
 class FilteredInterceptor
          Decorates another MethodInterceptor by only calling it if the method is accepted by the supplied MethodFilter.
 class LoggingInterceptor
          An interceptor which logs each method invocation.
 class MethodInterceptorAdapter
          An adapter class to adapt AOP Alliance's MethodInterceptor interface to Commons Proxy's Interceptor interface.
 class SerializingInterceptor
          An interceptor which makes a serialized copy of all parameters and return values.
 

Constructors in org.apache.commons.proxy.interceptor with parameters of type Interceptor
FilteredInterceptor(Interceptor inner, MethodFilter filter)
           
InterceptorChain(Interceptor[] interceptors)
           
 



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