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 theWorkflowTask
to which it belongs.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TElement
getElement()
UUID
getTaskUuid()
-
-
-
Method Detail
-
getElement
@Nullable TElement getElement()
- Returns:
- The instance of the wrapped workflow element.
-
getTaskUuid
@Nullable UUID getTaskUuid()
- Specified by:
getTaskUuid
in interfaceITaskUuidProviding
- Returns:
- The UUID that identifies the task to which the workflow element belongs.
-
-