Package | Description |
---|---|
org.jbpm.casemgmt.api |
Modifier and Type | Method and Description |
---|---|
CaseInstance |
CaseService.getCaseInstance(String caseId)
Returns case instance (only if it's active) identified by given case id - does not load case file, roles, milestones nor stages.
|
CaseInstance |
CaseService.getCaseInstance(String caseId,
boolean withData,
boolean withRoles,
boolean withMilestones,
boolean withStages)
Returns case instance (only if it's active) identified by given case id with options on what should be fetched
|
CaseInstance |
CaseRuntimeDataService.getCaseInstanceById(String caseId)
Returns case instance for given case id if the caller of this class is authorized to see the case instance
|
Modifier and Type | Method and Description |
---|---|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstances(List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns all available active case instances that match given statuses
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstances(org.kie.api.runtime.query.QueryContext queryContext)
Returns all available active case instances
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesAnyRole(List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns case instances that given user (via identity provider) is involved in in any role.
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesByDataItem(String dataItemName,
List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns all available active case instances that match given statuses and has case file data item with given name
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesByDataItemAndValue(String dataItemName,
String dataItemValue,
List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns all available active case instances that match given statuses and has case file data item with given name and value
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesByDefinition(String caseDefinitionId,
List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns all available case instances;
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesByDeployment(String deploymentId,
List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns all available case instances;
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesByRole(String roleName,
List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns cases instances that given user (via identity provider) has access to with given role.
|
Collection<CaseInstance> |
CaseRuntimeDataService.getCaseInstancesOwnedBy(String owner,
List<CaseStatus> statuses,
org.kie.api.runtime.query.QueryContext queryContext)
Returns all case instances owned by given user
|
Copyright © 2001–2019 JBoss by Red Hat. All rights reserved.