Package | Description |
---|---|
org.jbpm.casemgmt.api | |
org.jbpm.casemgmt.impl | |
org.jbpm.casemgmt.impl.dynamic |
Modifier and Type | Method and Description |
---|---|
TaskSpecification |
CaseService.newHumanTaskSpec(String taskName,
String description,
String actorIds,
String groupIds,
Map<String,Object> parameters)
Returns new TaskSpecification describing user task so it can be created as dynamic task.
|
TaskSpecification |
CaseService.newTaskSpec(String nodeType,
String nodeName,
Map<String,Object> parameters)
Returns new TaskSpecification describing generic (work item based) task so it can be added as dynamic task.
|
Modifier and Type | Method and Description |
---|---|
void |
CaseService.addDynamicTask(Long processInstanceId,
TaskSpecification taskSpecification)
Adds new user task to specified process instance.
|
void |
CaseService.addDynamicTask(String caseId,
TaskSpecification taskSpecification)
Adds new user task to specified case.
|
void |
CaseService.addDynamicTaskToStage(Long processInstanceId,
String stage,
TaskSpecification taskSpecification)
Adds new user task to specified case and stage on given process instance.
|
void |
CaseService.addDynamicTaskToStage(String caseId,
String stage,
TaskSpecification taskSpecification)
Adds new user task to specified case and stage.
|
Modifier and Type | Method and Description |
---|---|
TaskSpecification |
CaseServiceImpl.newHumanTaskSpec(String taskName,
String description,
String actorIds,
String groupIds,
Map<String,Object> parameters) |
TaskSpecification |
CaseServiceImpl.newTaskSpec(String nodeType,
String nodeName,
Map<String,Object> parameters) |
Modifier and Type | Method and Description |
---|---|
void |
CaseServiceImpl.addDynamicTask(Long processInstanceId,
TaskSpecification taskSpecification) |
void |
CaseServiceImpl.addDynamicTask(String caseId,
TaskSpecification taskSpecification) |
void |
CaseServiceImpl.addDynamicTaskToStage(Long processInstanceId,
String stage,
TaskSpecification taskSpecification) |
void |
CaseServiceImpl.addDynamicTaskToStage(String caseId,
String stage,
TaskSpecification taskSpecification) |
Modifier and Type | Class and Description |
---|---|
class |
HumanTaskSpecification
Defines human task specification to create new user task in ad hoc (dynamic) process instance
Expected parameters are:
NodeName - is a mandatory name of the task - accept variable expressions
TaskName - is a optional look up name of the task's form - accept variable expressions
ActorId - is an optional list of actors to be assigned - accept variable expressions
GroupId - is an optional list of groups to be assigned - accept variable expressions
Comment - is an optional comment/description of the task - accept variable expressions
|
class |
WorkItemTaskSpecification
Defines work item task specification to create new "service" task in ad hoc (dynamic) process instance
|
Copyright © 2001–2018 JBoss by Red Hat. All rights reserved.