|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
IReference is the interface that must be implemented by any reference to a service. It declares a family of methods for invoking an operation on a service, as well as a method for obtaining a string representation of the reference for later use with Registry.bind().
Method Summary | |
WSDL |
getWSDL()
Return WSDL for the service that I reference. |
Value |
invoke(java.lang.reflect.Method method,
java.lang.Object[] args,
Context context)
Invoke the operation associated with a particular method, using the specified arguments. |
Value |
invoke(java.lang.String method,
java.lang.Object[] args,
java.lang.Class[] argTypes,
Context context)
Invoke the operation associated with a particular method, using the specified arguments and argument types. |
Value |
invoke(java.lang.String method,
java.lang.String[] args,
Context context)
Invoke the operation associated with a particular method, using the specified arguments. |
Method Detail |
public WSDL getWSDL()
public Value invoke(java.lang.reflect.Method method, java.lang.Object[] args, Context context) throws java.lang.Throwable
method
- The method to invokeargs
- The arguments.context
- The context.
java.lang.Throwable
- If an exception occurs.public Value invoke(java.lang.String method, java.lang.Object[] args, java.lang.Class[] argTypes, Context context) throws java.lang.Throwable
method
- The name of the method to invokeargs
- The arguments.argTypes
- The type of the arguments.context
- The context.
java.lang.Throwable
- If an exception occurs.public Value invoke(java.lang.String method, java.lang.String[] args, Context context) throws java.lang.Throwable
method
- The name of the method to invokeargs
- The arguments, expressed as strings.context
- The context.
java.lang.Throwable
- If an exception occurs.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |