javax.rad.remote.event
Class CallEvent

java.lang.Object
  extended by javax.rad.remote.event.CallEvent

public class CallEvent
extends Object

The CallEvent class contains information about object and action calls. The difference between object and action calls is that the object name is null for action calls. And the action name is the method name.


Constructor Summary
CallEvent(String pObjectName, String pMethodName, Object[] pParams, boolean pIsCallBack)
          Creates a new instance of CallEvent.
 
Method Summary
 String getMethodName()
          Gets the method or action name.
 String getObjectName()
          Gets the object name.
 Object[] getParameter()
          Gets the parameter list.
 boolean isCallBack()
          Gets whether the call is a callback call.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CallEvent

public CallEvent(String pObjectName,
                 String pMethodName,
                 Object[] pParams,
                 boolean pIsCallBack)
Creates a new instance of CallEvent.

Parameters:
pObjectName - the name of the object or null for an action call
pMethodName - the method or action name
pParams - the parameter
pIsCallBack - true if the call is a callback call, false otherwise
Method Detail

getObjectName

public String getObjectName()
Gets the object name.

Returns:
the name of the object or null for an action call

getMethodName

public String getMethodName()
Gets the method or action name.

Returns:
the name

getParameter

public Object[] getParameter()
Gets the parameter list.

Returns:
the parameter

isCallBack

public boolean isCallBack()
Gets whether the call is a callback call.

Returns:
true if the call is a callback call, false otherwise


Copyright © 2009 SIB Visions GmbH. All Rights Reserved.