Class DataObjectDeploymentQueryImpl
java.lang.Object
org.flowable.common.engine.impl.db.ListQueryParameterObject
org.flowable.common.engine.impl.query.AbstractQuery<DataObjectDeploymentQuery,DataObjectDeployment>
com.flowable.dataobject.engine.impl.repository.DataObjectDeploymentQueryImpl
- All Implemented Interfaces:
DataObjectDeploymentQuery
,java.io.Serializable
,org.flowable.common.engine.api.query.Query<DataObjectDeploymentQuery,DataObjectDeployment>
,org.flowable.common.engine.impl.interceptor.Command<java.lang.Object>
public class DataObjectDeploymentQueryImpl extends org.flowable.common.engine.impl.query.AbstractQuery<DataObjectDeploymentQuery,DataObjectDeployment> implements DataObjectDeploymentQuery, java.io.Serializable
- Author:
- Tijs Rademakers, Joram Barrez
- See Also:
- Serialized Form
-
Nested Class Summary
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
category
protected java.lang.String
categoryNotEquals
protected java.lang.String
dataObjectDefinitionKey
protected java.lang.String
dataObjectDefinitionKeyLike
protected java.lang.String
deploymentId
protected java.util.List<java.lang.String>
deploymentIds
protected java.lang.String
key
protected boolean
latest
protected java.lang.String
name
protected java.lang.String
nameLike
protected java.lang.String
parentDeploymentId
protected java.lang.String
parentDeploymentIdLike
protected java.lang.String
tenantId
protected java.lang.String
tenantIdLike
protected boolean
withoutTenantId
-
Constructor Summary
Constructors Constructor Description DataObjectDeploymentQueryImpl()
DataObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
DataObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
Method Summary
Modifier and Type Method Description DataObjectDeploymentQueryImpl
dataObjectDefinitionKey(java.lang.String key)
Only select deployments with the given data object definition key.DataObjectDeploymentQueryImpl
dataObjectDefinitionKeyLike(java.lang.String keyLike)
Only select deployments with a data object definition key like the given string.DataObjectDeploymentQueryImpl
deploymentCategory(java.lang.String deploymentCategory)
Only select deployments with the given category.DataObjectDeploymentQueryImpl
deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)
Only select deployments that have a different category then the given one.DataObjectDeploymentQueryImpl
deploymentId(java.lang.String deploymentId)
Only select deployments with the given deployment id.DataObjectDeploymentQueryImpl
deploymentIds(java.util.List<java.lang.String> deploymentIds)
Only select deployments with the given deployment ids.DataObjectDeploymentQueryImpl
deploymentKey(java.lang.String deploymentKey)
Only select deployments with the given key.DataObjectDeploymentQueryImpl
deploymentName(java.lang.String deploymentName)
Only select deployments with the given name.DataObjectDeploymentQueryImpl
deploymentNameLike(java.lang.String nameLike)
Only select deployments with a name like the given string.DataObjectDeploymentQueryImpl
deploymentTenantId(java.lang.String tenantId)
Only select deployment that have the given tenant id.DataObjectDeploymentQueryImpl
deploymentTenantIdLike(java.lang.String tenantIdLike)
Only select deployments with a tenant id like the given one.DataObjectDeploymentQueryImpl
deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.long
executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
java.util.List<DataObjectDeployment>
executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
java.lang.String
getCategory()
java.lang.String
getCategoryNotEquals()
java.lang.String
getDataObjectDefinitionKey()
java.lang.String
getDataObjectDefinitionKeyLike()
java.lang.String
getDeploymentId()
java.util.List<java.lang.String>
getDeploymentIds()
java.lang.String
getKey()
java.lang.String
getName()
java.lang.String
getNameLike()
java.lang.String
getTenantId()
java.lang.String
getTenantIdLike()
boolean
isWithoutTenantId()
DataObjectDeploymentQueryImpl
latest()
Only select the latest deployments per deployment key.DataObjectDeploymentQuery
orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).DataObjectDeploymentQuery
orderByDeploymentName()
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).DataObjectDeploymentQuery
orderByDeploymentTime()
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).DataObjectDeploymentQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).DataObjectDeploymentQueryImpl
parentDeploymentId(java.lang.String parentDeploymentId)
Only select deployment that have the given deployment parent id.DataObjectDeploymentQueryImpl
parentDeploymentIdLike(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 Details
-
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 -
dataObjectDefinitionKey
protected java.lang.String dataObjectDefinitionKey -
dataObjectDefinitionKeyLike
protected java.lang.String dataObjectDefinitionKeyLike -
latest
protected boolean latest
-
-
Constructor Details
-
DataObjectDeploymentQueryImpl
public DataObjectDeploymentQueryImpl() -
DataObjectDeploymentQueryImpl
public DataObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext) -
DataObjectDeploymentQueryImpl
public DataObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
-
Method Details
-
deploymentId
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with the given deployment id.- Specified by:
deploymentId
in interfaceDataObjectDeploymentQuery
-
deploymentIds
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with the given deployment ids.- Specified by:
deploymentIds
in interfaceDataObjectDeploymentQuery
-
deploymentName
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with the given name.- Specified by:
deploymentName
in interfaceDataObjectDeploymentQuery
-
deploymentNameLike
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with a name like the given string.- Specified by:
deploymentNameLike
in interfaceDataObjectDeploymentQuery
-
deploymentKey
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with the given key.- Specified by:
deploymentKey
in interfaceDataObjectDeploymentQuery
-
deploymentCategory
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with the given category.- Specified by:
deploymentCategory
in interfaceDataObjectDeploymentQuery
- See Also:
DataObjectDeploymentBuilder.category(String)
-
deploymentCategoryNotEquals
public DataObjectDeploymentQueryImpl deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)Description copied from interface:DataObjectDeploymentQuery
Only select deployments that have a different category then the given one.- Specified by:
deploymentCategoryNotEquals
in interfaceDataObjectDeploymentQuery
- See Also:
DataObjectDeploymentBuilder.category(String)
-
parentDeploymentId
Description copied from interface:DataObjectDeploymentQuery
Only select deployment that have the given deployment parent id.- Specified by:
parentDeploymentId
in interfaceDataObjectDeploymentQuery
-
parentDeploymentIdLike
public DataObjectDeploymentQueryImpl parentDeploymentIdLike(java.lang.String parentDeploymentIdLike)Description copied from interface:DataObjectDeploymentQuery
Only select deployments with a deployment parent id like the given one.- Specified by:
parentDeploymentIdLike
in interfaceDataObjectDeploymentQuery
-
deploymentWithoutTenantId
Description copied from interface:DataObjectDeploymentQuery
Only select deployments that do not have a tenant id.- Specified by:
deploymentWithoutTenantId
in interfaceDataObjectDeploymentQuery
-
deploymentTenantId
Description copied from interface:DataObjectDeploymentQuery
Only select deployment that have the given tenant id.- Specified by:
deploymentTenantId
in interfaceDataObjectDeploymentQuery
-
deploymentTenantIdLike
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with a tenant id like the given one.- Specified by:
deploymentTenantIdLike
in interfaceDataObjectDeploymentQuery
-
dataObjectDefinitionKey
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with the given data object definition key.- Specified by:
dataObjectDefinitionKey
in interfaceDataObjectDeploymentQuery
-
dataObjectDefinitionKeyLike
Description copied from interface:DataObjectDeploymentQuery
Only select deployments with a data object definition key like the given string.- Specified by:
dataObjectDefinitionKeyLike
in interfaceDataObjectDeploymentQuery
-
latest
Description copied from interface:DataObjectDeploymentQuery
Only select the latest deployments per deployment key.- Specified by:
latest
in interfaceDataObjectDeploymentQuery
-
orderByDeploymentId
Description copied from interface:DataObjectDeploymentQuery
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentId
in interfaceDataObjectDeploymentQuery
-
orderByDeploymentTime
Description copied from interface:DataObjectDeploymentQuery
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentTime
in interfaceDataObjectDeploymentQuery
-
orderByDeploymentName
Description copied from interface:DataObjectDeploymentQuery
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentName
in interfaceDataObjectDeploymentQuery
-
orderByTenantId
Description copied from interface:DataObjectDeploymentQuery
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByTenantId
in interfaceDataObjectDeploymentQuery
-
executeCount
public long executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)- Specified by:
executeCount
in classorg.flowable.common.engine.impl.query.AbstractQuery<DataObjectDeploymentQuery,DataObjectDeployment>
-
executeList
public java.util.List<DataObjectDeployment> executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)- Specified by:
executeList
in classorg.flowable.common.engine.impl.query.AbstractQuery<DataObjectDeploymentQuery,DataObjectDeployment>
-
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() -
getDataObjectDefinitionKey
public java.lang.String getDataObjectDefinitionKey() -
getDataObjectDefinitionKeyLike
public java.lang.String getDataObjectDefinitionKeyLike()
-