Interface IElementWithTask<TElement>
-
- Type Parameters:
TElement- Type of the workflow element wrapped.
- All Superinterfaces:
ITaskUuidProviding,Serializable
- All Known Implementing Classes:
ElementWithTask,FlowchartSelection,NodeWithTask,TriggerWithTask
public interface IElementWithTask<TElement> extends ITaskUuidProviding, Serializable
Represents a workflow element together with theWorkflowTaskto which it belongs.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TElementgetElement()UUIDgetTaskUuid()
-
-
-
Method Detail
-
getElement
@Nullable TElement getElement()
- Returns:
- The instance of the wrapped workflow element.
-
getTaskUuid
@Nullable UUID getTaskUuid()
- Specified by:
getTaskUuidin interfaceITaskUuidProviding- Returns:
- The UUID that identifies the task to which the workflow element belongs.
-
-