mx4j.adaptor.interceptor
Class Invocation

java.lang.Object
  |
  +--mx4j.adaptor.interceptor.Invocation
All Implemented Interfaces:
java.io.Serializable

public class Invocation
extends java.lang.Object
implements java.io.Serializable

The invocation information carrier.

Version:
$Revision: 1.3 $
Author:
Simone Bordet
See Also:
Serialized Form

Constructor Summary
Invocation()
           
 
Method Summary
 java.lang.Object[] getArguments()
          Returns the invocation method arguments
 InvocationContext getInvocationContext()
          Returns the invocation user-defined information
 java.lang.String getMethodName()
          Returns the invocation method name
 java.lang.String[] getSignature()
          Returns the invocation method signature
 void setArguments(java.lang.Object[] args)
          Sets the arguments of the method to be invoked on the server-side
 void setInvocationContext(InvocationContext context)
          Sets the invocation user-defined information
 void setMethodName(java.lang.String name)
          Sets the method name to be invoked on the server-side
 void setSignature(java.lang.String[] signature)
          Sets the signature of the method to be invoked on the server-side
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Invocation

public Invocation()
Method Detail

setMethodName

public void setMethodName(java.lang.String name)
Sets the method name to be invoked on the server-side
See Also:
setSignature(java.lang.String[])

setSignature

public void setSignature(java.lang.String[] signature)
Sets the signature of the method to be invoked on the server-side
See Also:
setArguments(java.lang.Object[])

setArguments

public void setArguments(java.lang.Object[] args)
Sets the arguments of the method to be invoked on the server-side
See Also:
setMethodName(java.lang.String)

setInvocationContext

public void setInvocationContext(InvocationContext context)
Sets the invocation user-defined information
See Also:
getInvocationContext()

getInvocationContext

public InvocationContext getInvocationContext()
Returns the invocation user-defined information
See Also:
setInvocationContext(mx4j.adaptor.interceptor.InvocationContext)

getMethodName

public java.lang.String getMethodName()
Returns the invocation method name

getArguments

public java.lang.Object[] getArguments()
Returns the invocation method arguments

getSignature

public java.lang.String[] getSignature()
Returns the invocation method signature