Package org.mwolff.command.process
Interface Transition
-
- All Known Implementing Classes:
DefaultTransition
public interface Transition
Interface for a transition used for the process mode of the framework.- Author:
- Manfred Wolff
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getReturnValue()
Optional<String>
getTarget()
void
setReturnValue(String returnValue)
void
setTarget(String target)
-
-
-
Method Detail
-
getReturnValue
String getReturnValue()
- Returns:
- The return value of the transition.
-
setReturnValue
void setReturnValue(String returnValue)
- Parameters:
returnValue
- The return value of the transition.
-
setTarget
void setTarget(String target)
- Parameters:
target
- The target of the transition.
-
-