Class WorkObjectDeploymentQueryImpl
java.lang.Object
org.flowable.common.engine.impl.db.ListQueryParameterObject
org.flowable.common.engine.impl.query.AbstractQuery<WorkObjectDeploymentQuery,WorkObjectDeployment>
com.flowable.workobject.engine.impl.WorkObjectDeploymentQueryImpl
- All Implemented Interfaces:
WorkObjectDeploymentQuery
,java.io.Serializable
,org.flowable.common.engine.api.query.Query<WorkObjectDeploymentQuery,WorkObjectDeployment>
,org.flowable.common.engine.impl.interceptor.Command<java.lang.Object>
public class WorkObjectDeploymentQueryImpl extends org.flowable.common.engine.impl.query.AbstractQuery<WorkObjectDeploymentQuery,WorkObjectDeployment> implements WorkObjectDeploymentQuery, 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
deploymentId
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
protected java.lang.String
workObjectDefinitionKey
protected java.lang.String
workObjectDefinitionKeyLike
-
Constructor Summary
Constructors Constructor Description WorkObjectDeploymentQueryImpl()
WorkObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
WorkObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
Method Summary
Modifier and Type Method Description WorkObjectDeploymentQueryImpl
deploymentCategory(java.lang.String deploymentCategory)
Only select deployments with the given category.WorkObjectDeploymentQueryImpl
deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)
Only select deployments that have a different category then the given one.WorkObjectDeploymentQueryImpl
deploymentId(java.lang.String deploymentId)
Only select deployments with the given deployment id.WorkObjectDeploymentQueryImpl
deploymentName(java.lang.String deploymentName)
Only select deployments with the given name.WorkObjectDeploymentQueryImpl
deploymentNameLike(java.lang.String nameLike)
Only select deployments with a name like the given string.WorkObjectDeploymentQueryImpl
deploymentTenantId(java.lang.String tenantId)
Only select deployment that have the given tenant id.WorkObjectDeploymentQueryImpl
deploymentTenantIdLike(java.lang.String tenantIdLike)
Only select deployments with a tenant id like the given one.WorkObjectDeploymentQueryImpl
deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.long
executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
java.util.List<WorkObjectDeployment>
executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
WorkObjectDeploymentQueryImpl
formDefinitionKey(java.lang.String key)
Only select deployments with the given form definition key.WorkObjectDeploymentQueryImpl
formDefinitionKeyLike(java.lang.String keyLike)
Only select deployments with a form definition key like the given string.java.lang.String
getCategory()
java.lang.String
getCategoryNotEquals()
java.lang.String
getDeploymentId()
java.lang.String
getName()
java.lang.String
getNameLike()
java.lang.String
getTenantId()
java.lang.String
getTenantIdLike()
java.lang.String
getWorkObjectDefinitionKey()
java.lang.String
getWorkObjectDefinitionKeyLike()
boolean
isWithoutTenantId()
WorkObjectDeploymentQuery
orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).WorkObjectDeploymentQuery
orderByDeploymentName()
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).WorkObjectDeploymentQuery
orderByDeploymentTime()
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).WorkObjectDeploymentQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).WorkObjectDeploymentQueryImpl
parentDeploymentId(java.lang.String parentDeploymentId)
Only select deployment that have the given deployment parent id.WorkObjectDeploymentQueryImpl
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 -
name
protected java.lang.String name -
nameLike
protected java.lang.String nameLike -
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 -
workObjectDefinitionKey
protected java.lang.String workObjectDefinitionKey -
workObjectDefinitionKeyLike
protected java.lang.String workObjectDefinitionKeyLike
-
-
Constructor Details
-
WorkObjectDeploymentQueryImpl
public WorkObjectDeploymentQueryImpl() -
WorkObjectDeploymentQueryImpl
public WorkObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext) -
WorkObjectDeploymentQueryImpl
public WorkObjectDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
-
Method Details
-
deploymentId
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with the given deployment id.- Specified by:
deploymentId
in interfaceWorkObjectDeploymentQuery
-
deploymentName
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with the given name.- Specified by:
deploymentName
in interfaceWorkObjectDeploymentQuery
-
deploymentNameLike
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with a name like the given string.- Specified by:
deploymentNameLike
in interfaceWorkObjectDeploymentQuery
-
deploymentCategory
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with the given category.- Specified by:
deploymentCategory
in interfaceWorkObjectDeploymentQuery
-
deploymentCategoryNotEquals
public WorkObjectDeploymentQueryImpl deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)Description copied from interface:WorkObjectDeploymentQuery
Only select deployments that have a different category then the given one.- Specified by:
deploymentCategoryNotEquals
in interfaceWorkObjectDeploymentQuery
-
parentDeploymentId
Description copied from interface:WorkObjectDeploymentQuery
Only select deployment that have the given deployment parent id.- Specified by:
parentDeploymentId
in interfaceWorkObjectDeploymentQuery
-
parentDeploymentIdLike
public WorkObjectDeploymentQueryImpl parentDeploymentIdLike(java.lang.String parentDeploymentIdLike)Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with a deployment parent id like the given one.- Specified by:
parentDeploymentIdLike
in interfaceWorkObjectDeploymentQuery
-
deploymentWithoutTenantId
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments that do not have a tenant id.- Specified by:
deploymentWithoutTenantId
in interfaceWorkObjectDeploymentQuery
-
deploymentTenantId
Description copied from interface:WorkObjectDeploymentQuery
Only select deployment that have the given tenant id.- Specified by:
deploymentTenantId
in interfaceWorkObjectDeploymentQuery
-
deploymentTenantIdLike
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with a tenant id like the given one.- Specified by:
deploymentTenantIdLike
in interfaceWorkObjectDeploymentQuery
-
formDefinitionKey
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with the given form definition key.- Specified by:
formDefinitionKey
in interfaceWorkObjectDeploymentQuery
-
formDefinitionKeyLike
Description copied from interface:WorkObjectDeploymentQuery
Only select deployments with a form definition key like the given string.- Specified by:
formDefinitionKeyLike
in interfaceWorkObjectDeploymentQuery
-
orderByDeploymentId
Description copied from interface:WorkObjectDeploymentQuery
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentId
in interfaceWorkObjectDeploymentQuery
-
orderByDeploymentTime
Description copied from interface:WorkObjectDeploymentQuery
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentTime
in interfaceWorkObjectDeploymentQuery
-
orderByDeploymentName
Description copied from interface:WorkObjectDeploymentQuery
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentName
in interfaceWorkObjectDeploymentQuery
-
orderByTenantId
Description copied from interface:WorkObjectDeploymentQuery
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByTenantId
in interfaceWorkObjectDeploymentQuery
-
executeCount
public long executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)- Specified by:
executeCount
in classorg.flowable.common.engine.impl.query.AbstractQuery<WorkObjectDeploymentQuery,WorkObjectDeployment>
-
executeList
public java.util.List<WorkObjectDeployment> executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)- Specified by:
executeList
in classorg.flowable.common.engine.impl.query.AbstractQuery<WorkObjectDeploymentQuery,WorkObjectDeployment>
-
getDeploymentId
public java.lang.String getDeploymentId() -
getName
public java.lang.String getName() -
getNameLike
public java.lang.String getNameLike() -
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() -
getWorkObjectDefinitionKey
public java.lang.String getWorkObjectDefinitionKey() -
getWorkObjectDefinitionKeyLike
public java.lang.String getWorkObjectDefinitionKeyLike()
-