Uses of Class
org.ow2.bonita.facade.exception.VariableNotFoundException

Packages that use VariableNotFoundException
org.ow2.bonita.facade   
org.ow2.bonita.facade.exception Contains exception classes thrown by Nova Bonita APIs. 
org.ow2.bonita.facade.internal All interfaces in this package are for internal use only. 
 

Uses of VariableNotFoundException in org.ow2.bonita.facade
 

Methods in org.ow2.bonita.facade that throw VariableNotFoundException
 java.lang.Object QueryRuntimeAPI.getActivityInstanceVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId)
          Obtains a variable defined as local to the activity for the given activity UUID and variable Id.
 java.lang.Object QueryRuntimeAPI.getProcessInstanceVariable(ProcessInstanceUUID instanceUUID, java.lang.String variableId)
          Obtains a process variable for the given process instance UUID and variable Id.
 java.lang.Object QueryRuntimeAPI.getVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId)
          Obtains a variable for the given activity and variable Id.
 ProcessInstanceUUID RuntimeAPI.instantiateProcess(ProcessDefinitionUUID processUUID, java.util.Map<java.lang.String,java.lang.Object> variables)
          Creates an instance of the specified process with the added variable map and start the execution.
 void RuntimeAPI.setActivityInstanceVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId, java.lang.Object variableValue)
          Searches for variable with the given activity UUID and variable Id.
If the activity variable is found, the given value is set.
If the XPDL dataField has String type then use instance of java.lang.String class for variableValue. If the XPDL dataField has EnumerationType type then use instance of Enumeration class for variableValue. The field selectedValue can contain only one value from the possibleValues list field.
 void RuntimeAPI.setProcessInstanceVariable(ProcessInstanceUUID instanceUUID, java.lang.String variableId, java.lang.Object variableValue)
          Searches for variable with id variableId within the given process instance with ProcessInstanceUUID instanceUUID.
If the variable is found, the given value is set.
If the XPDL dataField is String type then use instance of java.lang.String class for variableValue. If the XPDL dataField is Enumeration type then use instance of Enumeration class for variableValue. The field selectedValue of Enumeration type can contain only one value from the possibleValues list field.
 void RuntimeAPI.setVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId, java.lang.Object variableValue)
           Searches for variable with id variableId within the given activity instance with the given UUID.
If the variable is found within the activity, the given value is set.
If the variable is not found within the activity the search is performed within the process instance.
If the variable is found within the process instance, the given value is set.
 

Uses of VariableNotFoundException in org.ow2.bonita.facade.exception
 

Methods in org.ow2.bonita.facade.exception that return VariableNotFoundException
static VariableNotFoundException VariableNotFoundException.build(java.lang.String id, java.lang.Throwable e)
           
 

Constructors in org.ow2.bonita.facade.exception with parameters of type VariableNotFoundException
VariableNotFoundException(VariableNotFoundException e)
           
 

Uses of VariableNotFoundException in org.ow2.bonita.facade.internal
 

Methods in org.ow2.bonita.facade.internal that throw VariableNotFoundException
 java.lang.Object InternalQueryRuntimeAPI.getActivityInstanceVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId, java.lang.String queryList)
           
 java.lang.Object InternalQueryRuntimeAPI.getProcessInstanceVariable(ProcessInstanceUUID instanceUUID, java.lang.String variableId, java.lang.String queryList)
           
 java.lang.Object InternalQueryRuntimeAPI.getVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId, java.lang.String queryList)
           
 ProcessInstanceUUID InternalRuntimeAPI.instantiateProcess(ProcessDefinitionUUID processUUID, java.util.Map<java.lang.String,java.lang.Object> variables)
           
 void InternalRuntimeAPI.setActivityInstanceVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId, java.lang.Object variableValue)
           
 void InternalRuntimeAPI.setProcessInstanceVariable(ProcessInstanceUUID instanceUUID, java.lang.String variableId, java.lang.Object variableValue)
           
 void InternalRuntimeAPI.setVariable(ActivityInstanceUUID activityUUID, java.lang.String variableId, java.lang.Object variableValue)
           
 



Copyright © 2009 OW2 Consortium. All Rights Reserved.