Class ChooseAction
- java.lang.Object
-
- com.aspectran.core.activity.process.action.ChooseAction
-
- All Implemented Interfaces:
Executable
public class ChooseAction extends java.lang.Object implements Executable
Created: 2019-07-13
-
-
Constructor Summary
Constructors Constructor Description ChooseAction(ChooseRule chooseRule)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectexecute(Activity activity)Execute this action.java.lang.StringgetActionId()Gets the action id.<T> TgetActionRule()Gets the action rule.ActionTypegetActionType()Gets the Action Type.booleanisHidden()Returns whether this action is hidden.java.lang.StringtoString()
-
-
-
Constructor Detail
-
ChooseAction
public ChooseAction(ChooseRule chooseRule)
-
-
Method Detail
-
getActionId
public java.lang.String getActionId()
Description copied from interface:ExecutableGets the action id.- Specified by:
getActionIdin interfaceExecutable- Returns:
- the action id
-
execute
public java.lang.Object execute(Activity activity) throws java.lang.Exception
Description copied from interface:ExecutableExecute this action.- Specified by:
executein interfaceExecutable- Parameters:
activity- the activity- Returns:
- the result of action execution
- Throws:
java.lang.Exception- if the action fails to execute
-
isHidden
public boolean isHidden()
Description copied from interface:ExecutableReturns whether this action is hidden.- Specified by:
isHiddenin interfaceExecutable- Returns:
- true, if is hidden action
-
getActionType
public ActionType getActionType()
Description copied from interface:ExecutableGets the Action Type.- Specified by:
getActionTypein interfaceExecutable- Returns:
- the Action Type
-
getActionRule
public <T> T getActionRule()
Description copied from interface:ExecutableGets the action rule.- Specified by:
getActionRulein interfaceExecutable- Type Parameters:
T- the generic type- Returns:
- the action rule
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-