Uses of Interface
org.camunda.bpm.engine.repository.CaseDefinition
Packages that use 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 DeploymentsRuntimeService:
    For starting and searching ProcessInstancesTaskService:
    Exposes operations to manage human (standalone) Tasks,
    such as claiming, completing and assigning tasksIdentityService:
    Used for managing Users,
    Groups 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.engineMethods in org.camunda.bpm.engine that return CaseDefinitionModifier and TypeMethodDescriptionRepositoryService.getCaseDefinition(String caseDefinitionId) Returns theCaseDefinition.
- 
Uses of CaseDefinition in org.camunda.bpm.engine.implMethods in org.camunda.bpm.engine.impl that return CaseDefinitionModifier and TypeMethodDescriptionRepositoryServiceImpl.getCaseDefinition(String caseDefinitionId) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.impl.applicationMethods in org.camunda.bpm.engine.impl.application that return types with arguments of type CaseDefinitionModifier and TypeMethodDescriptionprotected List<CaseDefinition>ProcessApplicationManager.getDeployedCaseDefinitionArtifacts(DeploymentEntity deployment) Method parameters in org.camunda.bpm.engine.impl.application with type arguments of type CaseDefinitionModifier and TypeMethodDescriptionprotected voidProcessApplicationManager.logCaseDefinitionRegistrations(StringBuilder builder, List<CaseDefinition> caseDefinitions) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfgMethods in org.camunda.bpm.engine.impl.cfg with parameters of type CaseDefinitionModifier and TypeMethodDescriptionvoidCommandChecker.checkCreateCaseInstance(CaseDefinition caseDefinition) Checks if it is allowed to create an instance of the given case definition.voidCommandChecker.checkReadCaseDefinition(CaseDefinition caseDefinition) Checks if it is allowed to read the given case definition.voidCommandChecker.checkUpdateCaseDefinition(CaseDefinition caseDefinition) Checks if it is allowed to update the given case definition.
- 
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfg.authMethods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type CaseDefinitionModifier and TypeMethodDescriptionvoidAuthorizationCommandChecker.checkCreateCaseInstance(CaseDefinition caseDefinition) voidAuthorizationCommandChecker.checkReadCaseDefinition(CaseDefinition caseDefinition) voidAuthorizationCommandChecker.checkUpdateCaseDefinition(CaseDefinition caseDefinition) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cfg.multitenancyFields in org.camunda.bpm.engine.impl.cfg.multitenancy declared as CaseDefinitionModifier and TypeFieldDescriptionprotected CaseDefinitionTenantIdProviderCaseInstanceContext.caseDefinitionMethods in org.camunda.bpm.engine.impl.cfg.multitenancy that return CaseDefinitionMethods in org.camunda.bpm.engine.impl.cfg.multitenancy with parameters of type CaseDefinitionModifier and TypeMethodDescriptionvoidTenantCommandChecker.checkCreateCaseInstance(CaseDefinition caseDefinition) voidTenantCommandChecker.checkReadCaseDefinition(CaseDefinition caseDefinition) voidTenantCommandChecker.checkUpdateCaseDefinition(CaseDefinition caseDefinition) Constructors in org.camunda.bpm.engine.impl.cfg.multitenancy with parameters of type CaseDefinitionModifierConstructorDescriptionTenantIdProviderCaseInstanceContext(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.cmdMethods in org.camunda.bpm.engine.impl.cmmn.cmd that return CaseDefinitionModifier and TypeMethodDescriptionGetDeploymentCaseDefinitionCmd.execute(CommandContext commandContext) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.impl.cmmn.entity.repositoryClasses in org.camunda.bpm.engine.impl.cmmn.entity.repository that implement CaseDefinitionMethods in org.camunda.bpm.engine.impl.cmmn.entity.repository that return types with arguments of type CaseDefinitionModifier 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.cacheMethods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return types with arguments of type CaseDefinitionModifier and TypeMethodDescriptionprotected List<CaseDefinition>CmmnModelInstanceCache.getAllDefinitionsForDeployment(String deploymentId) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.impl.persistence.entityMethods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type CaseDefinitionModifier and TypeMethodDescriptionDeploymentEntity.getDeployedCaseDefinitions()ProcessApplicationDeploymentImpl.getDeployedCaseDefinitions()
- 
Uses of CaseDefinition in org.camunda.bpm.engine.repositoryMethods in org.camunda.bpm.engine.repository that return types with arguments of type CaseDefinitionModifier and TypeMethodDescriptionDeploymentWithDefinitions.getDeployedCaseDefinitions()Returns the case definitions, which are deployed with that deployment.
- 
Uses of CaseDefinition in org.camunda.bpm.engine.rest.dto.repositoryMethods in org.camunda.bpm.engine.rest.dto.repository with parameters of type CaseDefinitionModifier and TypeMethodDescriptionstatic CaseDefinitionDtoCaseDefinitionDto.fromCaseDefinition(CaseDefinition definition) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.rest.hal.caseDefinitionMethods in org.camunda.bpm.engine.rest.hal.caseDefinition with parameters of type CaseDefinitionModifier and TypeMethodDescriptionstatic HalCaseDefinitionHalCaseDefinition.fromCaseDefinition(CaseDefinition caseDefinition, ProcessEngine processEngine) 
- 
Uses of CaseDefinition in org.camunda.bpm.engine.test.assertions.cmmnMethods in org.camunda.bpm.engine.test.assertions.cmmn that return CaseDefinitionMethods in org.camunda.bpm.engine.test.assertions.cmmn with parameters of type CaseDefinitionModifier and TypeMethodDescriptionprotected static CaseDefinitionAssertCaseDefinitionAssert.assertThat(ProcessEngine engine, CaseDefinition actual) static CaseDefinitionAssertCmmnAwareTests.assertThat(CaseDefinition actual) Assert that...protected StringCaseDefinitionAssert.toString(CaseDefinition caseDefinition) Constructors in org.camunda.bpm.engine.test.assertions.cmmn with parameters of type CaseDefinitionModifierConstructorDescriptionprotectedCaseDefinitionAssert(ProcessEngine engine, CaseDefinition actual)