Class WildcardTransitionCriteria
java.lang.Object
org.springframework.webflow.engine.WildcardTransitionCriteria
- All Implemented Interfaces:
Serializable
,TransitionCriteria
Transition criteria that always returns true.
- Author:
- Keith Donald
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final WildcardTransitionCriteria
Shared instance of a TransitionCriteria that always returns true.static final String
Event id value ("*") that will cause the transition to match on any event. -
Method Summary
Modifier and TypeMethodDescriptionboolean
test
(RequestContext context) Check if the transition should fire based on the given flow execution request context.toString()
-
Field Details
-
WILDCARD_EVENT_ID
Event id value ("*") that will cause the transition to match on any event.- See Also:
-
INSTANCE
Shared instance of a TransitionCriteria that always returns true.
-
-
Method Details
-
test
Description copied from interface:TransitionCriteria
Check if the transition should fire based on the given flow execution request context.- Specified by:
test
in interfaceTransitionCriteria
- Parameters:
context
- the flow execution request context- Returns:
- true if the transition should fire, false otherwise
-
toString
-