Uses of Interface
org.camunda.bpm.engine.repository.CaseDefinition
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RepositoryService
.-
Uses of CaseDefinition in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionRepositoryService.getCaseDefinition
(String caseDefinitionId) Returns theCaseDefinition
. -
Uses of CaseDefinition in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionRepositoryServiceImpl.getCaseDefinition
(String caseDefinitionId) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.application
Modifier and TypeMethodDescriptionprotected List<CaseDefinition>
ProcessApplicationManager.getDeployedCaseDefinitionArtifacts
(DeploymentEntity deployment) Modifier and TypeMethodDescriptionprotected void
ProcessApplicationManager.logCaseDefinitionRegistrations
(StringBuilder builder, List<CaseDefinition> caseDefinitions) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfg
Modifier and TypeMethodDescriptionvoid
CommandChecker.checkCreateCaseInstance
(CaseDefinition caseDefinition) Checks if it is allowed to create an instance of the given case definition.void
CommandChecker.checkReadCaseDefinition
(CaseDefinition caseDefinition) Checks if it is allowed to read the given case definition.void
CommandChecker.checkUpdateCaseDefinition
(CaseDefinition caseDefinition) Checks if it is allowed to update the given case definition. -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfg.auth
Modifier and TypeMethodDescriptionvoid
AuthorizationCommandChecker.checkCreateCaseInstance
(CaseDefinition caseDefinition) void
AuthorizationCommandChecker.checkReadCaseDefinition
(CaseDefinition caseDefinition) void
AuthorizationCommandChecker.checkUpdateCaseDefinition
(CaseDefinition caseDefinition) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfg.multitenancy
Modifier and TypeFieldDescriptionprotected CaseDefinition
TenantIdProviderCaseInstanceContext.caseDefinition
Modifier and TypeMethodDescriptionvoid
TenantCommandChecker.checkCreateCaseInstance
(CaseDefinition caseDefinition) void
TenantCommandChecker.checkReadCaseDefinition
(CaseDefinition caseDefinition) void
TenantCommandChecker.checkUpdateCaseDefinition
(CaseDefinition caseDefinition) ModifierConstructorDescriptionTenantIdProviderCaseInstanceContext
(CaseDefinition caseDefinition, VariableMap variables) TenantIdProviderCaseInstanceContext
(CaseDefinition caseDefinition, VariableMap variables, DelegateCaseExecution superCaseExecution) TenantIdProviderCaseInstanceContext
(CaseDefinition caseDefinition, VariableMap variables, DelegateExecution superExecution) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cmmn.cmd
Modifier and TypeMethodDescriptionGetDeploymentCaseDefinitionCmd.execute
(CommandContext commandContext) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cmmn.entity.repository
Modifier and TypeMethodDescriptionCaseDefinitionQueryImpl.executeList
(CommandContext commandContext, Page page) CaseDefinitionManager.findCaseDefinitionByDeploymentId
(String deploymentId) CaseDefinitionManager.findCaseDefinitionsByQueryCriteria
(CaseDefinitionQueryImpl caseDefinitionQuery, Page page) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.persistence.deploy.cache
Modifier and TypeMethodDescriptionprotected List<CaseDefinition>
CmmnModelInstanceCache.getAllDefinitionsForDeployment
(String deploymentId) -
Uses of CaseDefinition in org.camunda.bpm.engine.impl.persistence.entity
Modifier and TypeMethodDescriptionDeploymentEntity.getDeployedCaseDefinitions()
ProcessApplicationDeploymentImpl.getDeployedCaseDefinitions()
-
Uses of CaseDefinition in org.camunda.bpm.engine.repository
Modifier and TypeMethodDescriptionDeploymentWithDefinitions.getDeployedCaseDefinitions()
Returns the case definitions, which are deployed with that deployment. -
Uses of CaseDefinition in org.camunda.bpm.engine.rest.dto.repository
Modifier and TypeMethodDescriptionstatic CaseDefinitionDto
CaseDefinitionDto.fromCaseDefinition
(CaseDefinition definition) -
Uses of CaseDefinition in org.camunda.bpm.engine.rest.hal.caseDefinition
Modifier and TypeMethodDescriptionstatic HalCaseDefinition
HalCaseDefinition.fromCaseDefinition
(CaseDefinition caseDefinition, ProcessEngine processEngine) -
Uses of CaseDefinition in org.camunda.bpm.engine.test.assertions.cmmn
Modifier and TypeMethodDescriptionprotected static CaseDefinitionAssert
CaseDefinitionAssert.assertThat
(ProcessEngine engine, CaseDefinition actual) static CaseDefinitionAssert
CmmnAwareTests.assertThat
(CaseDefinition actual) Assert that...protected String
CaseDefinitionAssert.toString
(CaseDefinition caseDefinition) ModifierConstructorDescriptionprotected
CaseDefinitionAssert
(ProcessEngine engine, CaseDefinition actual)