| java.lang.Object com.sun.xml.ws.client.sei.MethodHandler
All known Subclasses: com.sun.xml.ws.client.sei.SEIMethodHandler,
MethodHandler | abstract public class MethodHandler (Code) | | Handles an invocation of a method.
Each instance of
MethodHandler has an implicit knowledge of
a particular method that it handles.
author: Kohsuke Kawaguchi |
Method Summary | |
abstract Object | invoke(Object proxy, Object[] args) Performs the method invocation.
Parameters: proxy - The proxy object exposed to the user. |
invoke | abstract Object invoke(Object proxy, Object[] args) throws WebServiceException, Throwable(Code) | | Performs the method invocation.
Parameters: proxy - The proxy object exposed to the user. Must not be null. Parameters: args - The method invocation arguments. To handle asynchroonus method invocationswithout array reallocation, this aray is allowed to be longer than theactual number of arguments to the method. Additional array space should besimply ignored.a return value from the method invocation. may be null. throws: WebServiceException - If used on the client side, a WebServiceException signals an errorduring the service invocation. throws: Throwable - some faults are reported in terms of checked exceptions. |
|
|