org.apache.jetspeed.portlet.event
Interface ActionEvent

All Superinterfaces:
Event

Deprecated. since 6.0. Support of the IBM portlet API may be removed in a future release of WebSphere Portal. Use of the Java Portlet API (javax.portlet) is recommended instead.

public interface ActionEvent
extends Event

An ActionEvent is sent by the portlet container when an HTTP request is received that is associated with an action.

Since:
4.1
See Also:
PortletAction, ActionListener

Field Summary
static int ACTION_PERFORMED
          Deprecated. Event identifier indicating that portlet request has been received that one or more actions associated with it.
 
Method Summary
 PortletAction getAction()
          Deprecated. Use getActionString() instead
 java.lang.String getActionString()
          Deprecated. Returns the action string that this action event carries.
 
Methods inherited from interface org.apache.jetspeed.portlet.event.Event
getPortlet, getRequest
 

Field Detail

ACTION_PERFORMED

static final int ACTION_PERFORMED
Deprecated. 
Event identifier indicating that portlet request has been received that one or more actions associated with it. Each action will result in a separate event being fired.

An event with this id is fired when an action has to be performed.

See Also:
Constant Field Values
Method Detail

getAction

PortletAction getAction()
Deprecated. Use getActionString() instead

Returns the action that this action event carries.

Returns:
the portlet action

getActionString

java.lang.String getActionString()
Deprecated. 
Returns the action string that this action event carries. Simple portlet actions use a single string as portlet action. Thus portlet actions can be executed multiple times and do not require a session.

Returns:
the portlet actionString