Uses of Interface
org.activiti.engine.repository.ModelQuery
-
Packages that use ModelQuery Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.repository Classes related to theRepositoryService. -
-
Uses of ModelQuery in org.activiti.engine
Methods in org.activiti.engine that return ModelQuery Modifier and Type Method Description ModelQueryRepositoryService. createModelQuery()Query models. -
Uses of ModelQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement ModelQuery Modifier and Type Class Description classModelQueryImplMethods in org.activiti.engine.impl that return ModelQuery Modifier and Type Method Description ModelQueryRepositoryServiceImpl. createModelQuery()ModelQueryModelQueryImpl. deployed()ModelQueryModelQueryImpl. deploymentId(java.lang.String deploymentId)ModelQueryModelQueryImpl. latestVersion()ModelQueryModelQueryImpl. modelKey(java.lang.String key)ModelQueryModelQueryImpl. modelTenantId(java.lang.String tenantId)ModelQueryModelQueryImpl. modelTenantIdLike(java.lang.String tenantIdLike)ModelQueryModelQueryImpl. modelWithoutTenantId()ModelQueryModelQueryImpl. notDeployed()ModelQueryModelQueryImpl. orderByCreateTime()ModelQueryModelQueryImpl. orderByLastUpdateTime()ModelQueryModelQueryImpl. orderByModelCategory()ModelQueryModelQueryImpl. orderByModelId()ModelQueryModelQueryImpl. orderByModelKey()ModelQueryModelQueryImpl. orderByModelName()ModelQueryModelQueryImpl. orderByModelVersion()ModelQueryModelQueryImpl. orderByTenantId() -
Uses of ModelQuery in org.activiti.engine.repository
Methods in org.activiti.engine.repository that return ModelQuery Modifier and Type Method Description ModelQueryModelQuery. deployed()Only select models that are deployed (ie deploymentId != null)ModelQueryModelQuery. deploymentId(java.lang.String deploymentId)Only select models that are the source for the provided deploymentModelQueryModelQuery. latestVersion()Only select models which has the highest version.ModelQueryModelQuery. modelCategory(java.lang.String modelCategory)Only select models with the given category.ModelQueryModelQuery. modelCategoryLike(java.lang.String modelCategoryLike)Only select models where the category matches the given parameter.ModelQueryModelQuery. modelCategoryNotEquals(java.lang.String categoryNotEquals)Only select models that have a different category then the given one.ModelQueryModelQuery. modelId(java.lang.String modelId)Only select model with the given id.ModelQueryModelQuery. modelKey(java.lang.String key)Only selects models with the given key.ModelQueryModelQuery. modelName(java.lang.String modelName)Only select models with the given name.ModelQueryModelQuery. modelNameLike(java.lang.String modelNameLike)Only select models where the name matches the given parameter.ModelQueryModelQuery. modelTenantId(java.lang.String tenantId)Only select models that have the given tenant id.ModelQueryModelQuery. modelTenantIdLike(java.lang.String tenantIdLike)Only select models with a tenant id like the given one.ModelQueryModelQuery. modelVersion(java.lang.Integer modelVersion)Only select model with a certain version.ModelQueryModelQuery. modelWithoutTenantId()Only select models that do not have a tenant id.ModelQueryModelQuery. notDeployed()Only select models that are not yet deployedModelQueryModelQuery. orderByCreateTime()Order by the creation time of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByLastUpdateTime()Order by the last update time of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByModelCategory()Order by the category of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByModelId()Order by the id of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByModelKey()Order by the key of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByModelName()Order by the name of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByModelVersion()Order by the version of the models (needs to be followed byQuery.asc()orQuery.desc()).ModelQueryModelQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).
-