Class ActionDeploymentQueryImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.db.ListQueryParameterObject
-
- org.flowable.common.engine.impl.query.AbstractQuery<ActionDeploymentQuery,ActionDeployment>
-
- com.flowable.action.engine.impl.repository.ActionDeploymentQueryImpl
-
- All Implemented Interfaces:
ActionDeploymentQuery,Serializable,Query<ActionDeploymentQuery,ActionDeployment>,Command<Object>
public class ActionDeploymentQueryImpl extends AbstractQuery<ActionDeploymentQuery,ActionDeployment> implements ActionDeploymentQuery, Serializable
- Author:
- Tijs Rademakers, Joram Barrez
- See Also:
- Serialized Form
-
-
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
Fields Modifier and Type Field Description protected StringactionDefinitionKeyprotected StringactionDefinitionKeyLikeprotected Stringcategoryprotected StringcategoryNotEqualsprotected StringdeploymentIdprotected List<String>deploymentIdsprotected Stringkeyprotected booleanlatestprotected Stringnameprotected StringnameLikeprotected StringparentDeploymentIdprotected StringparentDeploymentIdLikeprotected StringtenantIdprotected StringtenantIdLikeprotected booleanwithoutTenantId-
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
Constructors Constructor Description ActionDeploymentQueryImpl()ActionDeploymentQueryImpl(CommandContext commandContext)ActionDeploymentQueryImpl(CommandExecutor commandExecutor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionDeploymentQueryImplactionDefinitionKey(String key)Only select deployments with the given action definition key.ActionDeploymentQueryImplactionDefinitionKeyLike(String keyLike)Only select deployments with a action definition key like the given string.ActionDeploymentQueryImpldeploymentCategory(String deploymentCategory)Only select deployments with the given category.ActionDeploymentQueryImpldeploymentCategoryNotEquals(String deploymentCategoryNotEquals)Only select deployments that have a different category then the given one.ActionDeploymentQueryImpldeploymentId(String deploymentId)Only select deployments with the given deployment id.ActionDeploymentQueryImpldeploymentIds(List<String> deploymentIds)Only select deployments with the given deployment ids.ActionDeploymentQueryImpldeploymentKey(String deploymentKey)Only select deployments with the given key.ActionDeploymentQueryImpldeploymentName(String deploymentName)Only select deployments with the given name.ActionDeploymentQueryImpldeploymentNameLike(String nameLike)Only select deployments with a name like the given string.ActionDeploymentQueryImpldeploymentTenantId(String tenantId)Only select deployment that have the given tenant id.ActionDeploymentQueryImpldeploymentTenantIdLike(String tenantIdLike)Only select deployments with a tenant id like the given one.ActionDeploymentQueryImpldeploymentWithoutTenantId()Only select deployments that do not have a tenant id.longexecuteCount(CommandContext commandContext)List<ActionDeployment>executeList(CommandContext commandContext)StringgetActionDefinitionKey()StringgetActionDefinitionKeyLike()StringgetCategory()StringgetCategoryNotEquals()StringgetDeploymentId()List<String>getDeploymentIds()StringgetKey()StringgetName()StringgetNameLike()StringgetTenantId()StringgetTenantIdLike()booleanisWithoutTenantId()ActionDeploymentQueryImpllatest()Only select the latest deployments per deployment key.ActionDeploymentQueryorderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).ActionDeploymentQueryorderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()orQuery.desc()).ActionDeploymentQueryorderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()orQuery.desc()).ActionDeploymentQueryorderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).ActionDeploymentQueryImplparentDeploymentId(String parentDeploymentId)Only select deployment that have the given deployment parent id.ActionDeploymentQueryImplparentDeploymentIdLike(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, buildOrderBy, getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getNullHandlingColumn, getOrderBy, getOrderByCollectionSafe, getOrderByForWindow, getOuterJoinOrderBy, getParameter, hasOrderBy, hasOrderByForColumn, isNeedsPaging, mapOrderByToSql, setDatabaseType, setFirstResult, setMaxResults, setNullHandlingColumn, setParameter
-
-
-
-
Field Detail
-
deploymentId
protected String deploymentId
-
name
protected String name
-
nameLike
protected String nameLike
-
key
protected String key
-
category
protected String category
-
categoryNotEquals
protected String categoryNotEquals
-
tenantId
protected String tenantId
-
tenantIdLike
protected String tenantIdLike
-
withoutTenantId
protected boolean withoutTenantId
-
parentDeploymentId
protected String parentDeploymentId
-
parentDeploymentIdLike
protected String parentDeploymentIdLike
-
actionDefinitionKey
protected String actionDefinitionKey
-
actionDefinitionKeyLike
protected String actionDefinitionKeyLike
-
latest
protected boolean latest
-
-
Constructor Detail
-
ActionDeploymentQueryImpl
public ActionDeploymentQueryImpl()
-
ActionDeploymentQueryImpl
public ActionDeploymentQueryImpl(CommandContext commandContext)
-
ActionDeploymentQueryImpl
public ActionDeploymentQueryImpl(CommandExecutor commandExecutor)
-
-
Method Detail
-
deploymentId
public ActionDeploymentQueryImpl deploymentId(String deploymentId)
Description copied from interface:ActionDeploymentQueryOnly select deployments with the given deployment id.- Specified by:
deploymentIdin interfaceActionDeploymentQuery
-
deploymentIds
public ActionDeploymentQueryImpl deploymentIds(List<String> deploymentIds)
Description copied from interface:ActionDeploymentQueryOnly select deployments with the given deployment ids.- Specified by:
deploymentIdsin interfaceActionDeploymentQuery
-
deploymentName
public ActionDeploymentQueryImpl deploymentName(String deploymentName)
Description copied from interface:ActionDeploymentQueryOnly select deployments with the given name.- Specified by:
deploymentNamein interfaceActionDeploymentQuery
-
deploymentNameLike
public ActionDeploymentQueryImpl deploymentNameLike(String nameLike)
Description copied from interface:ActionDeploymentQueryOnly select deployments with a name like the given string.- Specified by:
deploymentNameLikein interfaceActionDeploymentQuery
-
deploymentKey
public ActionDeploymentQueryImpl deploymentKey(String deploymentKey)
Description copied from interface:ActionDeploymentQueryOnly select deployments with the given key.- Specified by:
deploymentKeyin interfaceActionDeploymentQuery
-
deploymentCategory
public ActionDeploymentQueryImpl deploymentCategory(String deploymentCategory)
Description copied from interface:ActionDeploymentQueryOnly select deployments with the given category.- Specified by:
deploymentCategoryin interfaceActionDeploymentQuery- See Also:
ActionDeploymentBuilder.category(String)
-
deploymentCategoryNotEquals
public ActionDeploymentQueryImpl deploymentCategoryNotEquals(String deploymentCategoryNotEquals)
Description copied from interface:ActionDeploymentQueryOnly select deployments that have a different category then the given one.- Specified by:
deploymentCategoryNotEqualsin interfaceActionDeploymentQuery- See Also:
ActionDeploymentBuilder.category(String)
-
parentDeploymentId
public ActionDeploymentQueryImpl parentDeploymentId(String parentDeploymentId)
Description copied from interface:ActionDeploymentQueryOnly select deployment that have the given deployment parent id.- Specified by:
parentDeploymentIdin interfaceActionDeploymentQuery
-
parentDeploymentIdLike
public ActionDeploymentQueryImpl parentDeploymentIdLike(String parentDeploymentIdLike)
Description copied from interface:ActionDeploymentQueryOnly select deployments with a deployment parent id like the given one.- Specified by:
parentDeploymentIdLikein interfaceActionDeploymentQuery
-
deploymentWithoutTenantId
public ActionDeploymentQueryImpl deploymentWithoutTenantId()
Description copied from interface:ActionDeploymentQueryOnly select deployments that do not have a tenant id.- Specified by:
deploymentWithoutTenantIdin interfaceActionDeploymentQuery
-
deploymentTenantId
public ActionDeploymentQueryImpl deploymentTenantId(String tenantId)
Description copied from interface:ActionDeploymentQueryOnly select deployment that have the given tenant id.- Specified by:
deploymentTenantIdin interfaceActionDeploymentQuery
-
deploymentTenantIdLike
public ActionDeploymentQueryImpl deploymentTenantIdLike(String tenantIdLike)
Description copied from interface:ActionDeploymentQueryOnly select deployments with a tenant id like the given one.- Specified by:
deploymentTenantIdLikein interfaceActionDeploymentQuery
-
actionDefinitionKey
public ActionDeploymentQueryImpl actionDefinitionKey(String key)
Description copied from interface:ActionDeploymentQueryOnly select deployments with the given action definition key.- Specified by:
actionDefinitionKeyin interfaceActionDeploymentQuery
-
actionDefinitionKeyLike
public ActionDeploymentQueryImpl actionDefinitionKeyLike(String keyLike)
Description copied from interface:ActionDeploymentQueryOnly select deployments with a action definition key like the given string.- Specified by:
actionDefinitionKeyLikein interfaceActionDeploymentQuery
-
latest
public ActionDeploymentQueryImpl latest()
Description copied from interface:ActionDeploymentQueryOnly select the latest deployments per deployment key.- Specified by:
latestin interfaceActionDeploymentQuery
-
orderByDeploymentId
public ActionDeploymentQuery orderByDeploymentId()
Description copied from interface:ActionDeploymentQueryOrder by deployment id (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentIdin interfaceActionDeploymentQuery
-
orderByDeploymentTime
public ActionDeploymentQuery orderByDeploymentTime()
Description copied from interface:ActionDeploymentQueryOrder by deployment time (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentTimein interfaceActionDeploymentQuery
-
orderByDeploymentName
public ActionDeploymentQuery orderByDeploymentName()
Description copied from interface:ActionDeploymentQueryOrder by deployment name (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentNamein interfaceActionDeploymentQuery
-
orderByTenantId
public ActionDeploymentQuery orderByTenantId()
Description copied from interface:ActionDeploymentQueryOrder by tenant id (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByTenantIdin interfaceActionDeploymentQuery
-
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCountin classAbstractQuery<ActionDeploymentQuery,ActionDeployment>
-
executeList
public List<ActionDeployment> executeList(CommandContext commandContext)
- Specified by:
executeListin classAbstractQuery<ActionDeploymentQuery,ActionDeployment>
-
getDeploymentId
public String getDeploymentId()
-
getName
public String getName()
-
getNameLike
public String getNameLike()
-
getKey
public String getKey()
-
getCategory
public String getCategory()
-
getCategoryNotEquals
public String getCategoryNotEquals()
-
getTenantId
public String getTenantId()
-
getTenantIdLike
public String getTenantIdLike()
-
isWithoutTenantId
public boolean isWithoutTenantId()
-
getActionDefinitionKey
public String getActionDefinitionKey()
-
getActionDefinitionKeyLike
public String getActionDefinitionKeyLike()
-
-