Package de.xima.fc.workflow.taglib.model
Class InitialElementHandlerTypeSet
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.InitialElementHandlerTypeSet
-
- All Implemented Interfaces:
Serializable
public final class InitialElementHandlerTypeSet extends Object implements Serializable
Contains the additional workflow element handlers that should be loaded when the flowchart is loaded. Note that handlers for all known prototypes are loaded automatically.- Since:
- 7.1.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InitialElementHandlerTypeSet(Set<String> triggerTypes, Set<String> nodeTypes)Creates a new set with the given node and trigger handler types to load when the flowchart is loaded.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InitialElementHandlerTypeSetempty()List<String>getNodeTypes()List<String>getTriggerTypes()
-
-
-
Constructor Detail
-
InitialElementHandlerTypeSet
public InitialElementHandlerTypeSet(Set<String> triggerTypes, Set<String> nodeTypes)
Creates a new set with the given node and trigger handler types to load when the flowchart is loaded.- Parameters:
triggerTypes- Thetrigger typesof the handlers to load.nodeTypes- Thenode typesof the handlers to load.
-
-
Method Detail
-
getNodeTypes
public List<String> getNodeTypes()
- Returns:
- The
node typesof the handlers to load.
-
getTriggerTypes
public List<String> getTriggerTypes()
- Returns:
- The
trigger typesof the handlers to load.
-
empty
public static InitialElementHandlerTypeSet empty()
- Returns:
- A new empty set with no trigger and node types.
-
-