Uses of Interface
org.activiti.engine.repository.ModelQuery
-
Packages that use ModelQuery Package Description org.activiti.engine org.activiti.engine.impl org.activiti.engine.repository -
-
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()).
-