Uses of Interface
org.camunda.bpm.engine.repository.CaseDefinition
-
Packages that use CaseDefinition Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: Exposes information about ongoing and past process instances.
FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.application org.camunda.bpm.engine.impl.cfg org.camunda.bpm.engine.impl.cfg.auth org.camunda.bpm.engine.impl.cfg.multitenancy org.camunda.bpm.engine.impl.cmmn.cmd org.camunda.bpm.engine.impl.cmmn.entity.repository org.camunda.bpm.engine.impl.persistence.deploy.cache org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.repository Classes related to theRepositoryService
.org.camunda.bpm.engine.rest.dto.repository org.camunda.bpm.engine.rest.hal.caseDefinition -
-
Uses of CaseDefinition in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CaseDefinition Modifier and Type Method Description CaseDefinition
RepositoryService. getCaseDefinition(String caseDefinitionId)
Returns theCaseDefinition
. -
Uses of CaseDefinition in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return CaseDefinition Modifier and Type Method Description CaseDefinition
RepositoryServiceImpl. getCaseDefinition(String caseDefinitionId)
-
Uses of CaseDefinition in org.camunda.bpm.engine.impl.application
Methods in org.camunda.bpm.engine.impl.application that return types with arguments of type CaseDefinition Modifier and Type Method Description protected List<CaseDefinition>
ProcessApplicationManager. getDeployedCaseDefinitionArtifacts(DeploymentEntity deployment)
Method parameters in org.camunda.bpm.engine.impl.application with type arguments of type CaseDefinition Modifier and Type Method Description protected void
ProcessApplicationManager. logCaseDefinitionRegistrations(StringBuilder builder, List<CaseDefinition> caseDefinitions)
-
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfg
Methods in org.camunda.bpm.engine.impl.cfg with parameters of type CaseDefinition Modifier and Type Method Description void
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
Methods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type CaseDefinition Modifier and Type Method Description void
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
Fields in org.camunda.bpm.engine.impl.cfg.multitenancy declared as CaseDefinition Modifier and Type Field Description protected CaseDefinition
TenantIdProviderCaseInstanceContext. caseDefinition
Methods in org.camunda.bpm.engine.impl.cfg.multitenancy that return CaseDefinition Modifier and Type Method Description CaseDefinition
TenantIdProviderCaseInstanceContext. getCaseDefinition()
Methods in org.camunda.bpm.engine.impl.cfg.multitenancy with parameters of type CaseDefinition Modifier and Type Method Description void
TenantCommandChecker. checkCreateCaseInstance(CaseDefinition caseDefinition)
void
TenantCommandChecker. checkReadCaseDefinition(CaseDefinition caseDefinition)
void
TenantCommandChecker. checkUpdateCaseDefinition(CaseDefinition caseDefinition)
Constructors in org.camunda.bpm.engine.impl.cfg.multitenancy with parameters of type CaseDefinition Constructor Description TenantIdProviderCaseInstanceContext(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
Methods in org.camunda.bpm.engine.impl.cmmn.cmd that return CaseDefinition Modifier and Type Method Description CaseDefinition
GetDeploymentCaseDefinitionCmd. execute(CommandContext commandContext)
-
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cmmn.entity.repository
Classes in org.camunda.bpm.engine.impl.cmmn.entity.repository that implement CaseDefinition Modifier and Type Class Description class
CaseDefinitionEntity
Methods in org.camunda.bpm.engine.impl.cmmn.entity.repository that return types with arguments of type CaseDefinition Modifier and Type Method Description List<CaseDefinition>
CaseDefinitionQueryImpl. executeList(CommandContext commandContext, Page page)
List<CaseDefinition>
CaseDefinitionManager. findCaseDefinitionByDeploymentId(String deploymentId)
List<CaseDefinition>
CaseDefinitionManager. findCaseDefinitionsByQueryCriteria(CaseDefinitionQueryImpl caseDefinitionQuery, Page page)
-
Uses of CaseDefinition in org.camunda.bpm.engine.impl.persistence.deploy.cache
Methods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return types with arguments of type CaseDefinition Modifier and Type Method Description protected List<CaseDefinition>
CmmnModelInstanceCache. getAllDefinitionsForDeployment(String deploymentId)
-
Uses of CaseDefinition in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type CaseDefinition Modifier and Type Method Description List<CaseDefinition>
DeploymentEntity. getDeployedCaseDefinitions()
List<CaseDefinition>
ProcessApplicationDeploymentImpl. getDeployedCaseDefinitions()
-
Uses of CaseDefinition in org.camunda.bpm.engine.repository
Methods in org.camunda.bpm.engine.repository that return types with arguments of type CaseDefinition Modifier and Type Method Description List<CaseDefinition>
DeploymentWithDefinitions. getDeployedCaseDefinitions()
Returns the case definitions, which are deployed with that deployment. -
Uses of CaseDefinition in org.camunda.bpm.engine.rest.dto.repository
Methods in org.camunda.bpm.engine.rest.dto.repository with parameters of type CaseDefinition Modifier and Type Method Description static CaseDefinitionDto
CaseDefinitionDto. fromCaseDefinition(CaseDefinition definition)
-
Uses of CaseDefinition in org.camunda.bpm.engine.rest.hal.caseDefinition
Methods in org.camunda.bpm.engine.rest.hal.caseDefinition with parameters of type CaseDefinition Modifier and Type Method Description static HalCaseDefinition
HalCaseDefinition. fromCaseDefinition(CaseDefinition caseDefinition, ProcessEngine processEngine)
-