Package com.saperion.intf.wf
Interface CommandInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CommandInfoImpl
public interface CommandInfo extends java.io.Serializable
Command interface.- Author:
- rbo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SaWFConstants.CommandId
getCommand()
int
getTransition()
java.lang.String
getTransitionDescription()
boolean
isEnabled()
boolean
isNextReceiverRequired()
boolean
isReasonRequired()
-
-
-
Method Detail
-
getCommand
SaWFConstants.CommandId getCommand()
- Returns:
- the command
-
getTransition
int getTransition()
- Returns:
- the transition
-
isEnabled
boolean isEnabled()
- Returns:
- the enabled
-
getTransitionDescription
java.lang.String getTransitionDescription()
- Returns:
- the description of the transition
-
isReasonRequired
boolean isReasonRequired()
- Returns:
- whether the user has to give a reason to invoking this command
-
isNextReceiverRequired
boolean isNextReceiverRequired()
- Returns:
- whether the user has to select the next receiver
-
-