Class DocumentDeploymentQueryImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.db.ListQueryParameterObject
-
- org.flowable.common.engine.impl.query.AbstractQuery<DocumentDeploymentQuery,DocumentDeployment>
-
- com.flowable.content.engine.impl.repository.DocumentDeploymentQueryImpl
-
- All Implemented Interfaces:
DocumentDeploymentQuery,java.io.Serializable,org.flowable.common.engine.api.query.Query<DocumentDeploymentQuery,DocumentDeployment>,org.flowable.common.engine.impl.interceptor.Command<java.lang.Object>
public class DocumentDeploymentQueryImpl extends org.flowable.common.engine.impl.query.AbstractQuery<DocumentDeploymentQuery,DocumentDeployment> implements DocumentDeploymentQuery, java.io.Serializable
- Author:
- Tijs Rademakers, Joram Barrez
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringcategoryprotected java.lang.StringcategoryNotEqualsprotected java.lang.StringdeploymentIdprotected java.util.List<java.lang.String>deploymentIdsprotected java.lang.StringdocumentDefinitionKeyprotected java.lang.StringdocumentDefinitionKeyLikeprotected java.lang.Stringkeyprotected booleanlatestprotected java.lang.Stringnameprotected java.lang.StringnameLikeprotected java.lang.StringparentDeploymentIdprotected java.lang.StringparentDeploymentIdLikeprotected java.lang.StringtenantIdprotected java.lang.StringtenantIdLikeprotected booleanwithoutTenantId
-
Constructor Summary
Constructors Constructor Description DocumentDeploymentQueryImpl()DocumentDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)DocumentDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocumentDeploymentQueryImpldeploymentCategory(java.lang.String deploymentCategory)Only select deployments with the given category.DocumentDeploymentQueryImpldeploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)Only select deployments that have a different category then the given one.DocumentDeploymentQueryImpldeploymentId(java.lang.String deploymentId)Only select deployments with the given deployment id.DocumentDeploymentQueryImpldeploymentIds(java.util.List<java.lang.String> deploymentIds)Only select deployments with the given deployment ids.DocumentDeploymentQueryImpldeploymentKey(java.lang.String deploymentKey)Only select deployments with the given key.DocumentDeploymentQueryImpldeploymentName(java.lang.String deploymentName)Only select deployments with the given name.DocumentDeploymentQueryImpldeploymentNameLike(java.lang.String nameLike)Only select deployments with a name like the given string.DocumentDeploymentQueryImpldeploymentTenantId(java.lang.String tenantId)Only select deployment that have the given tenant id.DocumentDeploymentQueryImpldeploymentTenantIdLike(java.lang.String tenantIdLike)Only select deployments with a tenant id like the given one.DocumentDeploymentQueryImpldeploymentWithoutTenantId()Only select deployments that do not have a tenant id.DocumentDeploymentQueryImpldocumentDefinitionKey(java.lang.String key)Only select deployments with the given document definition key.DocumentDeploymentQueryImpldocumentDefinitionKeyLike(java.lang.String keyLike)Only select deployments with a document definition key like the given string.longexecuteCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)java.util.List<DocumentDeployment>executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)java.lang.StringgetCategory()java.lang.StringgetCategoryNotEquals()java.lang.StringgetDeploymentId()java.util.List<java.lang.String>getDeploymentIds()java.lang.StringgetDocumentDefinitionKey()java.lang.StringgetDocumentDefinitionKeyLike()java.lang.StringgetKey()java.lang.StringgetName()java.lang.StringgetNameLike()java.lang.StringgetParentDeploymentId()java.lang.StringgetParentDeploymentIdLike()java.lang.StringgetTenantId()java.lang.StringgetTenantIdLike()booleanisWithoutTenantId()DocumentDeploymentQueryImpllatest()Only select the latest deployments per deployment key.DocumentDeploymentQueryorderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).DocumentDeploymentQueryorderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()orQuery.desc()).DocumentDeploymentQueryorderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()orQuery.desc()).DocumentDeploymentQueryorderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).DocumentDeploymentQueryImplparentDeploymentId(java.lang.String parentDeploymentId)Only select deployment that have the given deployment parent id.DocumentDeploymentQueryImplparentDeploymentIdLike(java.lang.String parentDeploymentIdLike)Only select deployments with a deployment parent id like the given one.-
Methods inherited from class org.flowable.common.engine.impl.query.AbstractQuery
asc, checkQueryOk, count, desc, direction, execute, executeSingleResult, list, listPage, orderBy, orderBy, setCommandExecutor, singleResult
-
Methods inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
addOrder, getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getNullHandlingColumn, getOrderBy, getOrderByColumnMap, getOrderByColumns, getParameter, setDatabaseType, setFirstResult, setMaxResults, setNullHandlingColumn, setOrderByColumns, setParameter
-
-
-
-
Field Detail
-
deploymentId
protected java.lang.String deploymentId
-
deploymentIds
protected java.util.List<java.lang.String> deploymentIds
-
name
protected java.lang.String name
-
nameLike
protected java.lang.String nameLike
-
key
protected java.lang.String key
-
category
protected java.lang.String category
-
categoryNotEquals
protected java.lang.String categoryNotEquals
-
tenantId
protected java.lang.String tenantId
-
tenantIdLike
protected java.lang.String tenantIdLike
-
withoutTenantId
protected boolean withoutTenantId
-
parentDeploymentId
protected java.lang.String parentDeploymentId
-
parentDeploymentIdLike
protected java.lang.String parentDeploymentIdLike
-
documentDefinitionKey
protected java.lang.String documentDefinitionKey
-
documentDefinitionKeyLike
protected java.lang.String documentDefinitionKeyLike
-
latest
protected boolean latest
-
-
Constructor Detail
-
DocumentDeploymentQueryImpl
public DocumentDeploymentQueryImpl()
-
DocumentDeploymentQueryImpl
public DocumentDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
-
DocumentDeploymentQueryImpl
public DocumentDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
-
Method Detail
-
deploymentId
public DocumentDeploymentQueryImpl deploymentId(java.lang.String deploymentId)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with the given deployment id.- Specified by:
deploymentIdin interfaceDocumentDeploymentQuery
-
deploymentIds
public DocumentDeploymentQueryImpl deploymentIds(java.util.List<java.lang.String> deploymentIds)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with the given deployment ids.- Specified by:
deploymentIdsin interfaceDocumentDeploymentQuery
-
deploymentName
public DocumentDeploymentQueryImpl deploymentName(java.lang.String deploymentName)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with the given name.- Specified by:
deploymentNamein interfaceDocumentDeploymentQuery
-
deploymentNameLike
public DocumentDeploymentQueryImpl deploymentNameLike(java.lang.String nameLike)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with a name like the given string.- Specified by:
deploymentNameLikein interfaceDocumentDeploymentQuery
-
deploymentKey
public DocumentDeploymentQueryImpl deploymentKey(java.lang.String deploymentKey)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with the given key.- Specified by:
deploymentKeyin interfaceDocumentDeploymentQuery
-
deploymentCategory
public DocumentDeploymentQueryImpl deploymentCategory(java.lang.String deploymentCategory)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with the given category.- Specified by:
deploymentCategoryin interfaceDocumentDeploymentQuery
-
deploymentCategoryNotEquals
public DocumentDeploymentQueryImpl deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)
Description copied from interface:DocumentDeploymentQueryOnly select deployments that have a different category then the given one.- Specified by:
deploymentCategoryNotEqualsin interfaceDocumentDeploymentQuery
-
parentDeploymentId
public DocumentDeploymentQueryImpl parentDeploymentId(java.lang.String parentDeploymentId)
Description copied from interface:DocumentDeploymentQueryOnly select deployment that have the given deployment parent id.- Specified by:
parentDeploymentIdin interfaceDocumentDeploymentQuery
-
parentDeploymentIdLike
public DocumentDeploymentQueryImpl parentDeploymentIdLike(java.lang.String parentDeploymentIdLike)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with a deployment parent id like the given one.- Specified by:
parentDeploymentIdLikein interfaceDocumentDeploymentQuery
-
deploymentWithoutTenantId
public DocumentDeploymentQueryImpl deploymentWithoutTenantId()
Description copied from interface:DocumentDeploymentQueryOnly select deployments that do not have a tenant id.- Specified by:
deploymentWithoutTenantIdin interfaceDocumentDeploymentQuery
-
deploymentTenantId
public DocumentDeploymentQueryImpl deploymentTenantId(java.lang.String tenantId)
Description copied from interface:DocumentDeploymentQueryOnly select deployment that have the given tenant id.- Specified by:
deploymentTenantIdin interfaceDocumentDeploymentQuery
-
deploymentTenantIdLike
public DocumentDeploymentQueryImpl deploymentTenantIdLike(java.lang.String tenantIdLike)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with a tenant id like the given one.- Specified by:
deploymentTenantIdLikein interfaceDocumentDeploymentQuery
-
documentDefinitionKey
public DocumentDeploymentQueryImpl documentDefinitionKey(java.lang.String key)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with the given document definition key.- Specified by:
documentDefinitionKeyin interfaceDocumentDeploymentQuery
-
documentDefinitionKeyLike
public DocumentDeploymentQueryImpl documentDefinitionKeyLike(java.lang.String keyLike)
Description copied from interface:DocumentDeploymentQueryOnly select deployments with a document definition key like the given string.- Specified by:
documentDefinitionKeyLikein interfaceDocumentDeploymentQuery
-
latest
public DocumentDeploymentQueryImpl latest()
Description copied from interface:DocumentDeploymentQueryOnly select the latest deployments per deployment key.- Specified by:
latestin interfaceDocumentDeploymentQuery
-
orderByDeploymentId
public DocumentDeploymentQuery orderByDeploymentId()
Description copied from interface:DocumentDeploymentQueryOrder by deployment id (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentIdin interfaceDocumentDeploymentQuery
-
orderByDeploymentTime
public DocumentDeploymentQuery orderByDeploymentTime()
Description copied from interface:DocumentDeploymentQueryOrder by deployment time (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentTimein interfaceDocumentDeploymentQuery
-
orderByDeploymentName
public DocumentDeploymentQuery orderByDeploymentName()
Description copied from interface:DocumentDeploymentQueryOrder by deployment name (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentNamein interfaceDocumentDeploymentQuery
-
orderByTenantId
public DocumentDeploymentQuery orderByTenantId()
Description copied from interface:DocumentDeploymentQueryOrder by tenant id (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByTenantIdin interfaceDocumentDeploymentQuery
-
executeCount
public long executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
- Specified by:
executeCountin classorg.flowable.common.engine.impl.query.AbstractQuery<DocumentDeploymentQuery,DocumentDeployment>
-
executeList
public java.util.List<DocumentDeployment> executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
- Specified by:
executeListin classorg.flowable.common.engine.impl.query.AbstractQuery<DocumentDeploymentQuery,DocumentDeployment>
-
getDeploymentId
public java.lang.String getDeploymentId()
-
getDeploymentIds
public java.util.List<java.lang.String> getDeploymentIds()
-
getName
public java.lang.String getName()
-
getNameLike
public java.lang.String getNameLike()
-
getKey
public java.lang.String getKey()
-
getCategory
public java.lang.String getCategory()
-
getCategoryNotEquals
public java.lang.String getCategoryNotEquals()
-
getTenantId
public java.lang.String getTenantId()
-
getTenantIdLike
public java.lang.String getTenantIdLike()
-
isWithoutTenantId
public boolean isWithoutTenantId()
-
getDocumentDefinitionKey
public java.lang.String getDocumentDefinitionKey()
-
getDocumentDefinitionKeyLike
public java.lang.String getDocumentDefinitionKeyLike()
-
getParentDeploymentId
public java.lang.String getParentDeploymentId()
-
getParentDeploymentIdLike
public java.lang.String getParentDeploymentIdLike()
-
-