Package com.orchestranetworks.addon.dqid
Class IndicatorExecutionContext
java.lang.Object
com.orchestranetworks.addon.dqid.IndicatorExecutionContext
- Direct Known Subclasses:
DECIndicatorExecutionContext
,WorkflowIndicatorExecutionContext
The execution context of the indicator.
-
Method Summary
Modifier and TypeMethodDescriptionabstract IndicatorExecutionEnvironment
Returns the execution environment of the indicator.final String
Returns the execution id at runtime.final List<com.onwbp.adaptation.PrimaryKey>
Returns the list of indicator primary keys in the current execution.abstract boolean
Returnstrue
if on demand mode.abstract boolean
Returnstrue
if on probe/trigger mode.final void
setIndicatorCodes
(List<com.onwbp.adaptation.PrimaryKey> indicatorCodes) Adds list of indicator primary keys in the current execution.
-
Method Details
-
getExecutionEnvironment
Returns the execution environment of the indicator. -
isOnDemand
public abstract boolean isOnDemand()Returnstrue
if on demand mode. -
isOnProbe
public abstract boolean isOnProbe()Returnstrue
if on probe/trigger mode. -
setIndicatorCodes
Adds list of indicator primary keys in the current execution. -
getIndicatorCodes
Returns the list of indicator primary keys in the current execution. -
getExecutionId
Returns the execution id at runtime.
-