Package com.orchestranetworks.addon.dqid
Class IndicatorExecutionContext
- java.lang.Object
-
- com.orchestranetworks.addon.dqid.IndicatorExecutionContext
-
- Direct Known Subclasses:
DECIndicatorExecutionContext,WorkflowIndicatorExecutionContext
public abstract class IndicatorExecutionContext extends java.lang.ObjectThe execution context of the indicator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract IndicatorExecutionEnvironmentgetExecutionEnvironment()Returns the execution environment of the indicator.java.lang.StringgetExecutionId()Returns the execution id at runtime.java.util.List<com.onwbp.adaptation.PrimaryKey>getIndicatorCodes()Returns the list of indicator primary keys in the current execution.abstract booleanisOnDemand()Returnstrueif on demand mode.abstract booleanisOnProbe()Returnstrueif on probe/trigger mode.voidsetIndicatorCodes(java.util.List<com.onwbp.adaptation.PrimaryKey> indicatorCodes)Adds list of indicator primary keys in the current execution.
-
-
-
Method Detail
-
getExecutionEnvironment
public abstract IndicatorExecutionEnvironment getExecutionEnvironment()
Returns the execution environment of the indicator.
-
isOnDemand
public abstract boolean isOnDemand()
Returnstrueif on demand mode.
-
isOnProbe
public abstract boolean isOnProbe()
Returnstrueif on probe/trigger mode.
-
setIndicatorCodes
public final void setIndicatorCodes(java.util.List<com.onwbp.adaptation.PrimaryKey> indicatorCodes)
Adds list of indicator primary keys in the current execution.
-
getIndicatorCodes
public final java.util.List<com.onwbp.adaptation.PrimaryKey> getIndicatorCodes()
Returns the list of indicator primary keys in the current execution.
-
getExecutionId
public final java.lang.String getExecutionId()
Returns the execution id at runtime.
-
-