|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TaskInstance | |
|---|---|
| org.jbpm | central access to the jbpm database and other services. |
| org.jbpm.command | commands that can be used as an alternative to the try-finally blocks in the user code. |
| org.jbpm.db | provides access the to jBPM database. |
| org.jbpm.graph.exe | contains the runtime structures for process executions. |
| org.jbpm.graph.node | contains basic node implementations. |
| org.jbpm.instantiation | is for instantiating delegation classes and making them persistable with class Delegation. |
| org.jbpm.job | JNDI helper for JCR compatibility. |
| org.jbpm.taskmgmt | runtime extension of a process instance for task information. |
| org.jbpm.taskmgmt.def | process definition extensions for task management related information. |
| org.jbpm.taskmgmt.exe | extensions of runtime process instance data structure for tasks. |
| org.jbpm.taskmgmt.impl | db implementation of the task management service. |
| org.jbpm.taskmgmt.log | persistable logging (history information) classes for task related events. |
| Uses of TaskInstance in org.jbpm |
|---|
| Methods in org.jbpm that return TaskInstance | |
|---|---|
TaskInstance |
JbpmContext.getTaskInstance(long taskInstanceId)
gets a task instance from the db. |
TaskInstance |
JbpmContext.getTaskInstanceForUpdate(long taskInstanceId)
gets a task instance from the db and registers it for auto-save. |
TaskInstance |
JbpmContext.loadTaskInstance(long taskInstanceId)
loads a task instance from the db. |
TaskInstance |
JbpmContext.loadTaskInstanceForUpdate(long taskInstanceId)
loads a task instance from the db and registers it for auto-save. |
| Methods in org.jbpm with parameters of type TaskInstance | |
|---|---|
void |
JbpmContext.addAutoSaveTaskInstance(TaskInstance taskInstance)
|
void |
JbpmContext.save(TaskInstance taskInstance)
saves the process instance of the given task instance. |
| Uses of TaskInstance in org.jbpm.command |
|---|
| Methods in org.jbpm.command that return TaskInstance | |
|---|---|
protected TaskInstance |
TaskInstanceEndCommand.getTaskInstance(JbpmContext jbpmContext)
|
| Methods in org.jbpm.command with parameters of type TaskInstance | |
|---|---|
void |
AbstractGetObjectBaseCommand.retrieveTaskInstanceDetails(TaskInstance ti)
|
void |
AbstractGetObjectBaseCommand.retrieveVariables(TaskInstance ti)
|
| Uses of TaskInstance in org.jbpm.db |
|---|
| Methods in org.jbpm.db that return TaskInstance | |
|---|---|
TaskInstance |
TaskMgmtSession.getTaskInstance(long taskInstanceId)
get the task instance for a given task instance-id. |
TaskInstance |
TaskMgmtSession.loadTaskInstance(long taskInstanceId)
get the task instance for a given task instance-id. |
protected TaskInstance |
AbstractDbTestCase.saveAndReload(TaskInstance taskInstance)
|
| Methods in org.jbpm.db with parameters of type TaskInstance | |
|---|---|
protected TaskInstance |
AbstractDbTestCase.saveAndReload(TaskInstance taskInstance)
|
| Uses of TaskInstance in org.jbpm.graph.exe |
|---|
| Fields in org.jbpm.graph.exe declared as TaskInstance | |
|---|---|
protected TaskInstance |
ExecutionContext.taskInstance
|
protected TaskInstance |
Comment.taskInstance
|
| Methods in org.jbpm.graph.exe that return TaskInstance | |
|---|---|
TaskInstance |
ExecutionContext.getTaskInstance()
|
TaskInstance |
Comment.getTaskInstance()
|
| Methods in org.jbpm.graph.exe with parameters of type TaskInstance | |
|---|---|
void |
ExecutionContext.setTaskInstance(TaskInstance taskInstance)
|
void |
Comment.setTaskInstance(TaskInstance taskInstance)
|
| Uses of TaskInstance in org.jbpm.graph.node |
|---|
| Methods in org.jbpm.graph.node with parameters of type TaskInstance | |
|---|---|
boolean |
TaskNode.completionTriggersSignal(TaskInstance taskInstance)
|
| Uses of TaskInstance in org.jbpm.instantiation |
|---|
| Methods in org.jbpm.instantiation with parameters of type TaskInstance | |
|---|---|
void |
UserCodeInterceptor.executeTaskControllerInitialization(TaskControllerHandler taskControllerHandler,
TaskInstance taskInstance,
ContextInstance contextInstance,
Token token)
|
void |
UserCodeInterceptor.executeTaskControllerSubmission(TaskControllerHandler taskControllerHandler,
TaskInstance taskInstance,
ContextInstance contextInstance,
Token token)
|
| Uses of TaskInstance in org.jbpm.job |
|---|
| Methods in org.jbpm.job that return TaskInstance | |
|---|---|
TaskInstance |
Job.getTaskInstance()
|
| Methods in org.jbpm.job with parameters of type TaskInstance | |
|---|---|
void |
Job.setTaskInstance(TaskInstance taskInstance)
|
| Uses of TaskInstance in org.jbpm.taskmgmt |
|---|
| Methods in org.jbpm.taskmgmt that return TaskInstance | |
|---|---|
TaskInstance |
TaskInstanceFactory.createTaskInstance(ExecutionContext executionContext)
create a new task instance for the given execution context. |
| Uses of TaskInstance in org.jbpm.taskmgmt.def |
|---|
| Methods in org.jbpm.taskmgmt.def with parameters of type TaskInstance | |
|---|---|
void |
TaskControllerHandler.initializeTaskVariables(TaskInstance taskInstance,
ContextInstance contextInstance,
Token token)
extracts all information from the process context (optionally indirect) and initializes the task instance variables. |
void |
TaskController.initializeVariables(TaskInstance taskInstance)
extract the list of information from the process variables and make them available locally. |
void |
TaskController.submitParameters(TaskInstance taskInstance)
update the process variables from the the task-instance variables. |
void |
TaskControllerHandler.submitTaskVariables(TaskInstance taskInstance,
ContextInstance contextInstance,
Token token)
is called when a task completes. |
| Uses of TaskInstance in org.jbpm.taskmgmt.exe |
|---|
| Methods in org.jbpm.taskmgmt.exe that return TaskInstance | |
|---|---|
TaskInstance |
TaskMgmtInstance.createStartTaskInstance()
creates a task instance on the rootToken, and assigns it to the currently authenticated user. |
TaskInstance |
TaskMgmtInstance.createTaskInstance()
|
TaskInstance |
TaskMgmtInstance.createTaskInstance(Task task)
|
TaskInstance |
TaskMgmtInstance.createTaskInstance(Task task,
ExecutionContext executionContext)
creates an instance of the given task, in the given execution context. |
TaskInstance |
TaskMgmtInstance.createTaskInstance(Task task,
Token token)
creates an instance of the given task, for the given token. |
TaskInstance |
TaskMgmtInstance.createTaskInstance(Token token)
|
| Methods in org.jbpm.taskmgmt.exe with parameters of type TaskInstance | |
|---|---|
void |
TaskMgmtInstance.addTaskInstance(TaskInstance taskInstance)
|
void |
PooledActor.addTaskInstance(TaskInstance taskInstance)
|
static Set |
PooledActor.createPool(String[] actorIds,
SwimlaneInstance swimlaneInstance,
TaskInstance taskInstance)
|
void |
TaskMgmtInstance.removeTaskInstance(TaskInstance taskInstance)
|
void |
PooledActor.removeTaskInstance(TaskInstance taskInstance)
|
| Uses of TaskInstance in org.jbpm.taskmgmt.impl |
|---|
| Methods in org.jbpm.taskmgmt.impl that return TaskInstance | |
|---|---|
TaskInstance |
DefaultTaskInstanceFactoryImpl.createTaskInstance(ExecutionContext executionContext)
Deprecated. |
| Uses of TaskInstance in org.jbpm.taskmgmt.log |
|---|
| Fields in org.jbpm.taskmgmt.log declared as TaskInstance | |
|---|---|
protected TaskInstance |
TaskLog.taskInstance
|
| Methods in org.jbpm.taskmgmt.log that return TaskInstance | |
|---|---|
TaskInstance |
TaskLog.getTaskInstance()
|
| Constructors in org.jbpm.taskmgmt.log with parameters of type TaskInstance | |
|---|---|
TaskAssignLog(TaskInstance taskInstance,
String taskOldActorId,
String taskNewActorId)
|
|
TaskCreateLog(TaskInstance taskInstance,
String taskActorId)
|
|
TaskEndLog(TaskInstance taskInstance)
|
|
TaskLog(TaskInstance taskInstance)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||