Package org.glassfish.pfl.basic.proxy
Interface CompositeInvocationHandler
-
- All Superinterfaces:
java.lang.reflect.InvocationHandler
,java.io.Serializable
- All Known Implementing Classes:
CompositeInvocationHandlerImpl
public interface CompositeInvocationHandler extends java.lang.reflect.InvocationHandler, java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addInvocationHandler(java.lang.Class<?> interf, java.lang.reflect.InvocationHandler handler)
Add an invocation handler for all methods on interface interf.void
setDefaultHandler(java.lang.reflect.InvocationHandler handler)
Set the default invocation handler to use if none of the invocation handlers added by calls to addInvocationHandler apply.
-
-
-
Method Detail
-
addInvocationHandler
void addInvocationHandler(java.lang.Class<?> interf, java.lang.reflect.InvocationHandler handler)
Add an invocation handler for all methods on interface interf.
-
setDefaultHandler
void setDefaultHandler(java.lang.reflect.InvocationHandler handler)
Set the default invocation handler to use if none of the invocation handlers added by calls to addInvocationHandler apply.
-
-