|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Event | |
---|---|
org.springframework.webflow.action | Common action implementations invokable by flow definitions. |
org.springframework.webflow.action.portlet | Action implementations that define logic specific to flows executing in a JSR-168 Portlet environment. |
org.springframework.webflow.engine | The implementation of the core flow definition artifacts that serve the basis of the flow execution engine. |
org.springframework.webflow.execution | Core, stable abstractions for representing runtime executions of flow definitions. |
org.springframework.webflow.execution.support | Useful generic support implementations of core flow execution types. |
org.springframework.webflow.test | Support for testing flows and their associated artifacts. |
Uses of Event in org.springframework.webflow.action |
---|
Methods in org.springframework.webflow.action that return Event | |
---|---|
Event |
FormAction.bind(RequestContext context)
Bind incoming request parameters to allowed fields of the form object. |
Event |
FormAction.bindAndValidate(RequestContext context)
Bind incoming request parameters to allowed fields of the form object and then validate the bound form object if a validator is configured. |
Event |
SuccessEventFactory.createResultEvent(java.lang.Object source,
java.lang.Object resultObject,
RequestContext context)
|
Event |
ResultEventFactory.createResultEvent(java.lang.Object source,
java.lang.Object resultObject,
RequestContext context)
Create an event instance from the result object. |
Event |
ResultObjectBasedEventFactory.createResultEvent(java.lang.Object source,
java.lang.Object resultObject,
RequestContext context)
|
protected Event |
MultiAction.doExecute(RequestContext context)
|
protected abstract Event |
AbstractAction.doExecute(RequestContext context)
Template hook method subclasses should override to encapsulate their specific action execution logic. |
protected Event |
AbstractBeanInvokingAction.doExecute(RequestContext context)
|
protected Event |
AttributeMapperAction.doExecute(RequestContext context)
|
protected Event |
EvaluateAction.doExecute(RequestContext context)
|
protected Event |
SetAction.doExecute(RequestContext context)
|
Event |
CompositeAction.doExecute(RequestContext context)
|
protected Event |
AbstractAction.doPreExecute(RequestContext context)
Pre-action-execution hook, subclasses may override. |
protected Event |
AbstractAction.error()
Returns an "error" result event. |
protected Event |
AbstractAction.error(java.lang.Exception e)
Returns an "error" result event caused by the provided exception. |
Event |
AbstractAction.execute(RequestContext context)
|
protected Event |
AbstractAction.no()
Returns a "no" result event. |
Event |
FormAction.resetForm(RequestContext context)
Resets the form by clearing out the form object in the specified scope and recreating it. |
protected Event |
AbstractAction.result(boolean booleanResult)
Returns yes() if the boolean result is true, no() if false. |
protected Event |
AbstractAction.result(java.lang.String eventId)
Returns a result event for this action with the specified identifier. |
protected Event |
AbstractAction.result(java.lang.String eventId,
AttributeMap resultAttributes)
Returns a result event for this action with the specified identifier and the specified set of attributes. |
protected Event |
AbstractAction.result(java.lang.String eventId,
java.lang.String resultAttributeName,
java.lang.Object resultAttributeValue)
Returns a result event for this action with the specified identifier and a single attribute. |
Event |
FormAction.setupForm(RequestContext context)
Prepares a form object for display in a new form, creating it and caching it in the FormAction.getFormObjectScope()
if necessary. |
protected Event |
AbstractAction.success()
Returns a "success" result event. |
protected Event |
AbstractAction.success(java.lang.Object result)
Returns a "success" result event with the provided result object as a parameter. |
Event |
FormAction.validate(RequestContext context)
Validate the form object by invoking the validator if configured. |
protected Event |
AbstractAction.yes()
Returns a "yes" result event. |
Uses of Event in org.springframework.webflow.action.portlet |
---|
Methods in org.springframework.webflow.action.portlet that return Event | |
---|---|
protected Event |
SetPortletModeAction.doExecute(RequestContext context)
Sets the PortletMode. |
Uses of Event in org.springframework.webflow.engine |
---|
Methods in org.springframework.webflow.engine that return Event | |
---|---|
static Event |
ActionExecutor.execute(Action action,
RequestContext context)
Execute the given action. |
Event |
AnnotatedAction.execute(RequestContext context)
|
Event |
NoMatchingTransitionException.getEvent()
Returns the event for the current request that did not trigger any supported transition. |
protected Event |
AnnotatedAction.postProcessResult(Event resultEvent)
Get the event id to be used as grounds for a transition in the containing state, based on given result returned from action execution. |
Methods in org.springframework.webflow.engine with parameters of type Event | |
---|---|
protected Event |
AnnotatedAction.postProcessResult(Event resultEvent)
Get the event id to be used as grounds for a transition in the containing state, based on given result returned from action execution. |
void |
RequestControlContext.setLastEvent(Event lastEvent)
Record the last event signaled in the executing flow. |
ViewSelection |
RequestControlContext.signalEvent(Event event)
Signals the occurence of an event in the current state of this flow execution request context. |
Constructors in org.springframework.webflow.engine with parameters of type Event | |
---|---|
NoMatchingTransitionException(java.lang.String flowId,
java.lang.String stateId,
Event event,
java.lang.String message)
Create a new no matching transition exception. |
|
NoMatchingTransitionException(java.lang.String flowId,
java.lang.String stateId,
Event event,
java.lang.String message,
java.lang.Throwable cause)
Create a new no matching transition exception. |
Uses of Event in org.springframework.webflow.execution |
---|
Methods in org.springframework.webflow.execution that return Event | |
---|---|
Event |
Action.execute(RequestContext context)
Execute this action. |
Event |
RequestContext.getLastEvent()
Returns the last event signaled during this request. |
Methods in org.springframework.webflow.execution with parameters of type Event | |
---|---|
void |
FlowExecutionListener.eventSignaled(RequestContext context,
Event event)
Called when an event is signaled in the current state, but prior to any state transition. |
void |
FlowExecutionListenerAdapter.eventSignaled(RequestContext context,
Event event)
|
Uses of Event in org.springframework.webflow.execution.support |
---|
Methods in org.springframework.webflow.execution.support that return Event | |
---|---|
Event |
EventFactorySupport.error(java.lang.Object source)
Returns an "error" event. |
Event |
EventFactorySupport.error(java.lang.Object source,
java.lang.Exception e)
Returns an "error" event caused by the provided exception. |
Event |
EventFactorySupport.event(java.lang.Object source,
boolean booleanResult)
Returns an event to communicate an occurrence of a boolean expression. |
Event |
EventFactorySupport.event(java.lang.Object source,
java.lang.String eventId)
Returns a event with the specified identifier. |
Event |
EventFactorySupport.event(java.lang.Object source,
java.lang.String eventId,
AttributeMap attributes)
Returns a event with the specified identifier and the specified set of attributes. |
Event |
EventFactorySupport.event(java.lang.Object source,
java.lang.String eventId,
java.lang.String attributeName,
java.lang.Object attributeValue)
Returns a result event with the specified identifier and a single attribute. |
Event |
EventFactorySupport.no(java.lang.Object source)
Returns a "no" result event. |
Event |
EventFactorySupport.success(java.lang.Object source)
Returns a "success" event. |
Event |
EventFactorySupport.success(java.lang.Object source,
java.lang.Object result)
Returns a "success" event with the provided result object as an attribute. |
Event |
EventFactorySupport.yes(java.lang.Object source)
Returns a "yes" event. |
Uses of Event in org.springframework.webflow.test |
---|
Methods in org.springframework.webflow.test that return Event | |
---|---|
Event |
MockAction.execute(RequestContext context)
|
Event |
MockRequestContext.getLastEvent()
|
Methods in org.springframework.webflow.test with parameters of type Event | |
---|---|
void |
MockRequestContext.setLastEvent(Event lastEvent)
Set the last event that occured in this request context. |
ViewSelection |
MockRequestControlContext.signalEvent(Event event)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |