Package com.orchestranetworks.addon.dqid
Class WorkflowIndicatorExecutionEnvironment
- java.lang.Object
-
- com.orchestranetworks.addon.dqid.WorkflowIndicatorExecutionEnvironment
-
- All Implemented Interfaces:
IndicatorExecutionEnvironment
public final class WorkflowIndicatorExecutionEnvironment extends java.lang.Object implements IndicatorExecutionEnvironment
The execution environment for a workflow.
-
-
Constructor Summary
Constructors Constructor Description WorkflowIndicatorExecutionEnvironment(com.orchestranetworks.service.Session session, com.orchestranetworks.instance.Repository repository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.orchestranetworks.workflow.WorkflowEnginegetEngine()Returns the workflow engine in the execution time.com.orchestranetworks.instance.RepositorygetRepository()Returns the current repository.com.orchestranetworks.service.SessiongetSession()Returns the current user session.booleanisDEC()Returnstrueif in data element concept mode.booleanisWorkflow()Returnstrueif in workflow mode.
-
-
-
Method Detail
-
getRepository
public com.orchestranetworks.instance.Repository getRepository()
Description copied from interface:IndicatorExecutionEnvironmentReturns the current repository.- Specified by:
getRepositoryin interfaceIndicatorExecutionEnvironment
-
getSession
public com.orchestranetworks.service.Session getSession()
Description copied from interface:IndicatorExecutionEnvironmentReturns the current user session.- Specified by:
getSessionin interfaceIndicatorExecutionEnvironment
-
getEngine
public com.orchestranetworks.workflow.WorkflowEngine getEngine()
Returns the workflow engine in the execution time.
-
isDEC
public boolean isDEC()
Description copied from interface:IndicatorExecutionEnvironmentReturnstrueif in data element concept mode.- Specified by:
isDECin interfaceIndicatorExecutionEnvironment
-
isWorkflow
public boolean isWorkflow()
Description copied from interface:IndicatorExecutionEnvironmentReturnstrueif in workflow mode.- Specified by:
isWorkflowin interfaceIndicatorExecutionEnvironment
-
-