Package com.orchestranetworks.workflow
Interface DataContextReadOnly
-
- All Known Subinterfaces:
ActionPermissionsOnWorkflowContext,ConditionContext,DataContext,ScriptTaskContext,SubWorkflowsCompletionContext,SubWorkflowsCreationContext,UserTaskBeforeWorkItemCompletionContext,UserTaskCreationContext,UserTaskUsersForAllocationCollectorContext,UserTaskWorkItemCompletionContext,WaitTaskOnResumeContext,WaitTaskOnStartContext,WorkflowTriggerAfterProcessInstanceStartContext,WorkflowTriggerAfterWorkItemCreationContext,WorkflowTriggerBeforeProcessInstanceTerminationContext,WorkflowTriggerBeforeWorkItemAllocationContext,WorkflowTriggerBeforeWorkItemDeallocationContext,WorkflowTriggerBeforeWorkItemReallocationContext,WorkflowTriggerBeforeWorkItemStartContext,WorkflowTriggerBeforeWorkItemTerminationContext,WorkflowTriggerContext,WorkflowTriggerStepContext,WorkflowTriggerWorkItemAllocationContext,WorkflowTriggerWorkItemAuthenticatedContext,WorkflowTriggerWorkItemContext
public interface DataContextReadOnlyThe data context is a container for variables which must be kept during the whole process.A variable is defined by its name and its value. The name is the identifier of a variable and must therefore be unique in the data context.
This class gives access a data context only in read-only.
- Since:
- 5.4.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<String>getVariableNames()Returns the variables names of the data context.StringgetVariableString(String aVariableName)Returns the value of the specified variable in the data context.booleanisVariableDefined(String aVariableName)Returnstrueif the specified variable name is defined in the data context.
-