Class NotTransitionCriteria
java.lang.Object
org.springframework.webflow.engine.support.NotTransitionCriteria
- All Implemented Interfaces:
TransitionCriteria
Transition criteria that negates the result of the evaluation of another criteria object.
- Author:
- Keith Donald
-
Constructor Summary
ConstructorDescriptionNotTransitionCriteria
(TransitionCriteria criteria) Create a new transition criteria object that will negate the result of given criteria object. -
Method Summary
Modifier and TypeMethodDescriptionboolean
test
(RequestContext context) Check if the transition should fire based on the given flow execution request context.toString()
-
Constructor Details
-
NotTransitionCriteria
Create a new transition criteria object that will negate the result of given criteria object.- Parameters:
criteria
- the criteria to negate
-
-
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
-