Interface ResourceMethodInvocationHandlerProvider
-
- All Known Implementing Classes:
ResourceMethodInvocationHandlerFactory
public interface ResourceMethodInvocationHandlerProvider
Provides theinvocation handler
instances designated to handle invocations of the suppliedinvocable resource methods
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.reflect.InvocationHandler
create(Invocable method)
Get the invocation handler for the invocable resource method.
-
-
-
Method Detail
-
create
java.lang.reflect.InvocationHandler create(Invocable method)
Get the invocation handler for the invocable resource method. May returnnull
in case the method is not supported by the provider for whatever reason.- Parameters:
method
- invocable resource method.- Returns:
- invocation handler for the invocable resource method.
-
-