Package jadex.extension.ws.publish
Class Proxy
- java.lang.Object
- 
- jadex.extension.ws.publish.Proxy
 
- 
 public class Proxy extends java.lang.ObjectBase class for generated web service proxies. Generated proxies implement a domain dependent web service interface by delegation methods that all call the invocation handler. In this way the proxy does the same as a Java dynamic proxy. The invoke method in this class is copied as body for all service methods, i.e. the invoke method is not called itself at any time.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.reflect.InvocationHandlerhandlerThe invocation handler.
 - 
Constructor SummaryConstructors Constructor Description Proxy()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.reflect.InvocationHandlergetHandler()Get the handler.java.lang.Objectinvoke(java.lang.Object[] params)Functionality blueprint for all service methods.voidsetHandler(java.lang.reflect.InvocationHandler handler)Set the handler.
 
- 
- 
- 
Method Detail- 
invokepublic java.lang.Object invoke(java.lang.Object[] params) Functionality blueprint for all service methods.- Parameters:
- params- The parameters.
- Returns:
- The result.
 
 - 
getHandlerpublic java.lang.reflect.InvocationHandler getHandler() Get the handler.- Returns:
- The handler.
 
 - 
setHandlerpublic void setHandler(java.lang.reflect.InvocationHandler handler) Set the handler.- Parameters:
- handler- The handler to set.
 
 
- 
 
-