Package org.xwiki.bridge.event
Class ActionExecutedEvent
- java.lang.Object
-
- org.xwiki.bridge.event.AbstractActionExecutionEvent
-
- org.xwiki.bridge.event.ActionExecutedEvent
-
- All Implemented Interfaces:
Serializable
,ActionExecutionEvent
,org.xwiki.observation.event.EndEvent
,org.xwiki.observation.event.Event
public class ActionExecutedEvent extends AbstractActionExecutionEvent implements org.xwiki.observation.event.EndEvent
An event triggered whenever a client request (action) is processed, like/upload/
or/view/
. A specific event corresponds to only oneAbstractActionExecutionEvent.getActionName()
action type.The event also send the following parameters:
- source: the current {com.xpn.xwiki.doc.XWikiDocument} instance
- data: the current {com.xpn.xwiki.XWikiContext} instance
- Since:
- 3.2M3
- Version:
- $Id: 22f56317d04c0bd4a5fcdc43a9f834b19718401d $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionExecutedEvent()
Match anyActionExecutedEvent
.ActionExecutedEvent(String actionName)
Constructor initializing the action name of the event.
-
-
-
Constructor Detail
-
ActionExecutedEvent
public ActionExecutedEvent()
Match anyActionExecutedEvent
.
-
ActionExecutedEvent
public ActionExecutedEvent(String actionName)
Constructor initializing the action name of the event.- Parameters:
actionName
- the name of the executed action
-
-