Uses of Interface
org.camunda.bpm.engine.repository.Resource
-
Packages that use Resource 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.cmd org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.repository org.camunda.bpm.engine.repository Classes related to theRepositoryService
.org.camunda.bpm.engine.rest.dto.repository -
-
Uses of Resource in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return types with arguments of type Resource Modifier and Type Method Description List<Resource>
RepositoryService. getDeploymentResources(String deploymentId)
Retrieves a list of deployment resources for the given deployment, ordered alphabetically by name. -
Uses of Resource in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return types with arguments of type Resource Modifier and Type Method Description List<Resource>
RepositoryServiceImpl. getDeploymentResources(String deploymentId)
-
Uses of Resource in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd with parameters of type Resource Modifier and Type Method Description protected boolean
DeployCmd. isBpmnResource(Resource resourceEntity)
protected boolean
DeployCmd. isCmmnResource(Resource resourceEntity)
Method parameters in org.camunda.bpm.engine.impl.cmd with type arguments of type Resource Modifier and Type Method Description protected Set<String>
DeployCmd. parseProcessDefinitionKeys(Collection<Resource> resources)
-
Uses of Resource in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Resource Modifier and Type Class Description class
ResourceEntity
-
Uses of Resource in org.camunda.bpm.engine.impl.repository
Fields in org.camunda.bpm.engine.impl.repository with type parameters of type Resource Modifier and Type Field Description protected Map<String,Resource>
CandidateDeploymentImpl. resources
Methods in org.camunda.bpm.engine.impl.repository that return types with arguments of type Resource Modifier and Type Method Description Map<String,Resource>
CandidateDeploymentImpl. getResources()
Methods in org.camunda.bpm.engine.impl.repository with parameters of type Resource Modifier and Type Method Description protected boolean
DefaultDeploymentHandler. resourcesDiffer(Resource resource, Resource existing)
boolean
DefaultDeploymentHandler. shouldDeployResource(Resource newResource, Resource existingResource)
Method parameters in org.camunda.bpm.engine.impl.repository with type arguments of type Resource Modifier and Type Method Description void
CandidateDeploymentImpl. setResources(Map<String,Resource> resources)
Constructor parameters in org.camunda.bpm.engine.impl.repository with type arguments of type Resource Constructor Description CandidateDeploymentImpl(String name, Map<String,Resource> resources)
-
Uses of Resource in org.camunda.bpm.engine.repository
Methods in org.camunda.bpm.engine.repository that return types with arguments of type Resource Modifier and Type Method Description Map<String,Resource>
CandidateDeployment. getResources()
Methods in org.camunda.bpm.engine.repository with parameters of type Resource Modifier and Type Method Description boolean
DeploymentHandler. shouldDeployResource(Resource newResource, Resource existingResource)
This method is called in the first stage of the deployment process. -
Uses of Resource in org.camunda.bpm.engine.rest.dto.repository
Methods in org.camunda.bpm.engine.rest.dto.repository with parameters of type Resource Modifier and Type Method Description static DeploymentResourceDto
DeploymentResourceDto. fromResources(Resource resource)
-