Interface AllowedActions
-
- All Known Implementing Classes:
ActionRefs
public interface AllowedActions
Interface describing a representation of the <allowedActions> element of a Process Model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAllowedAction(AllowedAction allowedAction)
Add an allowedAction to the collectionAllowedAction
createAllowedAction()
Create an AllowedActionAllowedAction
getAllowedAction(String strActionName)
Get allowed action by action nameAction[]
getAllowedActions()
Get available actionsIterator<AllowedAction>
iterateAllowedAction()
Iterate through the AllowedAction objects
-
-
-
Method Detail
-
iterateAllowedAction
Iterator<AllowedAction> iterateAllowedAction()
Iterate through the AllowedAction objects- Returns:
- an iterator
-
createAllowedAction
AllowedAction createAllowedAction()
Create an AllowedAction- Returns:
- an object implementing AllowedAction
-
addAllowedAction
void addAllowedAction(AllowedAction allowedAction)
Add an allowedAction to the collection- Parameters:
allowedAction
- to be added
-
getAllowedActions
Action[] getAllowedActions()
Get available actions- Returns:
- allowed actions in an array
-
getAllowedAction
AllowedAction getAllowedAction(String strActionName)
Get allowed action by action name- Parameters:
strActionName
- the name of the action to find- Returns:
- allowed action or
null
if action not found
-
-