Package org.flowable.dmn.engine.impl
Class DmnDeploymentQueryImpl
java.lang.Object
org.flowable.common.engine.impl.db.ListQueryParameterObject
org.flowable.common.engine.impl.query.AbstractQuery<DmnDeploymentQuery,DmnDeployment>
org.flowable.dmn.engine.impl.DmnDeploymentQueryImpl
- All Implemented Interfaces:
Serializable
,Query<DmnDeploymentQuery,
,DmnDeployment> Command<Object>
,DmnDeploymentQuery
public class DmnDeploymentQueryImpl
extends AbstractQuery<DmnDeploymentQuery,DmnDeployment>
implements DmnDeploymentQuery, Serializable
- Author:
- Tijs Rademakers, Joram Barrez
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
ListQueryParameterObject.OrderBy, ListQueryParameterObject.ResultType
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected String
protected String
protected String
protected String
protected String
protected String
protected String
protected String
protected String
protected String
protected String
protected boolean
Fields inherited from class org.flowable.common.engine.impl.query.AbstractQuery
commandContext, commandExecutor
Fields inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
databaseType, DEFAULT_ORDER_BY, defaultOrderBy, firstResult, maxResults, nullHandlingColumn, nullHandlingOnOrder, orderByCollection, orderProperty, parameter, resultType, SORTORDER_ASC, SORTORDER_DESC
-
Constructor Summary
ConstructorsConstructorDescriptionDmnDeploymentQueryImpl
(CommandContext commandContext) DmnDeploymentQueryImpl
(CommandExecutor commandExecutor) -
Method Summary
Modifier and TypeMethodDescriptiondecisionKey
(String key) Only select deployments with the given decision key.decisionKeyLike
(String keyLike) Only select deployments with a decision key like the given string.deploymentCategory
(String deploymentCategory) Only select deployments with the given category.deploymentCategoryNotEquals
(String deploymentCategoryNotEquals) Only select deployments that have a different category then the given one.deploymentId
(String deploymentId) Only select deployments with the given deployment id.deploymentName
(String deploymentName) Only select deployments with the given name.deploymentNameLike
(String nameLike) Only select deployments with a name like the given string.deploymentTenantId
(String tenantId) Only select deployment that have the given tenant id.deploymentTenantIdLike
(String tenantIdLike) Only select deployments with a tenant id like the given one.Only select deployments that do not have a tenant id.long
executeCount
(CommandContext commandContext) executeList
(CommandContext commandContext) Executes the actual query to retrieve the list of results.getName()
boolean
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).parentDeploymentId
(String parentDeploymentId) Only select deployment that have the given parent deployment id.parentDeploymentIdLike
(String parentDeploymentIdLike) Only select deployments with a parent deployment 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, buildOrderBy, getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getNullHandlingColumn, getOrderBy, getOrderByCollectionSafe, getOrderByForWindow, getOuterJoinOrderBy, getParameter, hasOrderBy, hasOrderByForColumn, isNeedsPaging, mapOrderByToSql, setDatabaseType, setFirstResult, setMaxResults, setNullHandlingColumn, setParameter
-
Field Details
-
deploymentId
-
name
-
nameLike
-
category
-
categoryNotEquals
-
tenantId
-
tenantIdLike
-
withoutTenantId
protected boolean withoutTenantId -
parentDeploymentId
-
parentDeploymentIdLike
-
decisionKey
-
decisionKeyLike
-
-
Constructor Details
-
DmnDeploymentQueryImpl
public DmnDeploymentQueryImpl() -
DmnDeploymentQueryImpl
-
DmnDeploymentQueryImpl
-
-
Method Details
-
deploymentId
Description copied from interface:DmnDeploymentQuery
Only select deployments with the given deployment id.- Specified by:
deploymentId
in interfaceDmnDeploymentQuery
-
deploymentName
Description copied from interface:DmnDeploymentQuery
Only select deployments with the given name.- Specified by:
deploymentName
in interfaceDmnDeploymentQuery
-
deploymentNameLike
Description copied from interface:DmnDeploymentQuery
Only select deployments with a name like the given string.- Specified by:
deploymentNameLike
in interfaceDmnDeploymentQuery
-
deploymentCategory
Description copied from interface:DmnDeploymentQuery
Only select deployments with the given category.- Specified by:
deploymentCategory
in interfaceDmnDeploymentQuery
- See Also:
-
deploymentCategoryNotEquals
Description copied from interface:DmnDeploymentQuery
Only select deployments that have a different category then the given one.- Specified by:
deploymentCategoryNotEquals
in interfaceDmnDeploymentQuery
- See Also:
-
deploymentTenantId
Description copied from interface:DmnDeploymentQuery
Only select deployment that have the given tenant id.- Specified by:
deploymentTenantId
in interfaceDmnDeploymentQuery
-
deploymentTenantIdLike
Description copied from interface:DmnDeploymentQuery
Only select deployments with a tenant id like the given one.- Specified by:
deploymentTenantIdLike
in interfaceDmnDeploymentQuery
-
deploymentWithoutTenantId
Description copied from interface:DmnDeploymentQuery
Only select deployments that do not have a tenant id.- Specified by:
deploymentWithoutTenantId
in interfaceDmnDeploymentQuery
-
parentDeploymentId
Description copied from interface:DmnDeploymentQuery
Only select deployment that have the given parent deployment id.- Specified by:
parentDeploymentId
in interfaceDmnDeploymentQuery
-
parentDeploymentIdLike
Description copied from interface:DmnDeploymentQuery
Only select deployments with a parent deployment id like the given one.- Specified by:
parentDeploymentIdLike
in interfaceDmnDeploymentQuery
-
decisionKey
Description copied from interface:DmnDeploymentQuery
Only select deployments with the given decision key.- Specified by:
decisionKey
in interfaceDmnDeploymentQuery
-
decisionKeyLike
Description copied from interface:DmnDeploymentQuery
Only select deployments with a decision key like the given string.- Specified by:
decisionKeyLike
in interfaceDmnDeploymentQuery
-
orderByDeploymentId
Description copied from interface:DmnDeploymentQuery
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentId
in interfaceDmnDeploymentQuery
-
orderByDeploymentTime
Description copied from interface:DmnDeploymentQuery
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentTime
in interfaceDmnDeploymentQuery
-
orderByDeploymentName
Description copied from interface:DmnDeploymentQuery
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentName
in interfaceDmnDeploymentQuery
-
orderByTenantId
Description copied from interface:DmnDeploymentQuery
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByTenantId
in interfaceDmnDeploymentQuery
-
executeCount
- Specified by:
executeCount
in classAbstractQuery<DmnDeploymentQuery,
DmnDeployment>
-
executeList
Description copied from class:AbstractQuery
Executes the actual query to retrieve the list of results.- Specified by:
executeList
in classAbstractQuery<DmnDeploymentQuery,
DmnDeployment>
-
getDeploymentId
-
getName
-
getNameLike
-
getCategory
-
getCategoryNotEquals
-
getTenantId
-
getTenantIdLike
-
isWithoutTenantId
public boolean isWithoutTenantId() -
getDecisionKey
-
getDecisionKeyLike
-