Class ServiceDeploymentQueryImpl
java.lang.Object
org.flowable.common.engine.impl.db.ListQueryParameterObject
org.flowable.common.engine.impl.query.AbstractQuery<ServiceDeploymentQuery,ServiceDeployment>
com.flowable.serviceregistry.engine.impl.repository.ServiceDeploymentQueryImpl
- All Implemented Interfaces:
ServiceDeploymentQuery
,java.io.Serializable
,org.flowable.common.engine.api.query.Query<ServiceDeploymentQuery,ServiceDeployment>
,org.flowable.common.engine.impl.interceptor.Command<java.lang.Object>
public class ServiceDeploymentQueryImpl extends org.flowable.common.engine.impl.query.AbstractQuery<ServiceDeploymentQuery,ServiceDeployment> implements ServiceDeploymentQuery, 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
actionDefinitionKey
protected java.lang.String
actionDefinitionKeyLike
protected java.lang.String
category
protected java.lang.String
categoryNotEquals
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 ServiceDeploymentQueryImpl()
ServiceDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
ServiceDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
Method Summary
Modifier and Type Method Description ServiceDeploymentQueryImpl
actionDefinitionKey(java.lang.String key)
Only select deployments with the given action definition key.ServiceDeploymentQueryImpl
actionDefinitionKeyLike(java.lang.String keyLike)
Only select deployments with a action definition key like the given string.ServiceDeploymentQueryImpl
deploymentCategory(java.lang.String deploymentCategory)
Only select deployments with the given category.ServiceDeploymentQueryImpl
deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)
Only select deployments that have a different category then the given one.ServiceDeploymentQueryImpl
deploymentId(java.lang.String deploymentId)
Only select deployments with the given deployment id.ServiceDeploymentQueryImpl
deploymentIds(java.util.List<java.lang.String> deploymentIds)
Only select deployments with the given deployment ids.ServiceDeploymentQueryImpl
deploymentKey(java.lang.String deploymentKey)
Only select deployments with the given key.ServiceDeploymentQueryImpl
deploymentName(java.lang.String deploymentName)
Only select deployments with the given name.ServiceDeploymentQueryImpl
deploymentNameLike(java.lang.String nameLike)
Only select deployments with a name like the given string.ServiceDeploymentQueryImpl
deploymentTenantId(java.lang.String tenantId)
Only select deployment that have the given tenant id.ServiceDeploymentQueryImpl
deploymentTenantIdLike(java.lang.String tenantIdLike)
Only select deployments with a tenant id like the given one.ServiceDeploymentQueryImpl
deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.long
executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
java.util.List<ServiceDeployment>
executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
java.lang.String
getCategory()
java.lang.String
getCategoryNotEquals()
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
getServiceDefinitionKey()
java.lang.String
getServiceDefinitionKeyLike()
java.lang.String
getTenantId()
java.lang.String
getTenantIdLike()
boolean
isWithoutTenantId()
ServiceDeploymentQueryImpl
latest()
Only select the latest deployments per deployment key.ServiceDeploymentQuery
orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).ServiceDeploymentQuery
orderByDeploymentName()
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).ServiceDeploymentQuery
orderByDeploymentTime()
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).ServiceDeploymentQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).ServiceDeploymentQueryImpl
parentDeploymentId(java.lang.String parentDeploymentId)
Only select deployment that have the given deployment parent id.ServiceDeploymentQueryImpl
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 -
actionDefinitionKey
protected java.lang.String actionDefinitionKey -
actionDefinitionKeyLike
protected java.lang.String actionDefinitionKeyLike -
latest
protected boolean latest
-
-
Constructor Details
-
ServiceDeploymentQueryImpl
public ServiceDeploymentQueryImpl() -
ServiceDeploymentQueryImpl
public ServiceDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandContext commandContext) -
ServiceDeploymentQueryImpl
public ServiceDeploymentQueryImpl(org.flowable.common.engine.impl.interceptor.CommandExecutor commandExecutor)
-
-
Method Details
-
deploymentId
Description copied from interface:ServiceDeploymentQuery
Only select deployments with the given deployment id.- Specified by:
deploymentId
in interfaceServiceDeploymentQuery
-
deploymentIds
Description copied from interface:ServiceDeploymentQuery
Only select deployments with the given deployment ids.- Specified by:
deploymentIds
in interfaceServiceDeploymentQuery
-
deploymentName
Description copied from interface:ServiceDeploymentQuery
Only select deployments with the given name.- Specified by:
deploymentName
in interfaceServiceDeploymentQuery
-
deploymentNameLike
Description copied from interface:ServiceDeploymentQuery
Only select deployments with a name like the given string.- Specified by:
deploymentNameLike
in interfaceServiceDeploymentQuery
-
deploymentKey
Description copied from interface:ServiceDeploymentQuery
Only select deployments with the given key.- Specified by:
deploymentKey
in interfaceServiceDeploymentQuery
-
deploymentCategory
Description copied from interface:ServiceDeploymentQuery
Only select deployments with the given category.- Specified by:
deploymentCategory
in interfaceServiceDeploymentQuery
- See Also:
ServiceDeploymentBuilder.category(String)
-
deploymentCategoryNotEquals
public ServiceDeploymentQueryImpl deploymentCategoryNotEquals(java.lang.String deploymentCategoryNotEquals)Description copied from interface:ServiceDeploymentQuery
Only select deployments that have a different category then the given one.- Specified by:
deploymentCategoryNotEquals
in interfaceServiceDeploymentQuery
- See Also:
ServiceDeploymentBuilder.category(String)
-
parentDeploymentId
Description copied from interface:ServiceDeploymentQuery
Only select deployment that have the given deployment parent id.- Specified by:
parentDeploymentId
in interfaceServiceDeploymentQuery
-
parentDeploymentIdLike
Description copied from interface:ServiceDeploymentQuery
Only select deployments with a deployment parent id like the given one.- Specified by:
parentDeploymentIdLike
in interfaceServiceDeploymentQuery
-
deploymentWithoutTenantId
Description copied from interface:ServiceDeploymentQuery
Only select deployments that do not have a tenant id.- Specified by:
deploymentWithoutTenantId
in interfaceServiceDeploymentQuery
-
deploymentTenantId
Description copied from interface:ServiceDeploymentQuery
Only select deployment that have the given tenant id.- Specified by:
deploymentTenantId
in interfaceServiceDeploymentQuery
-
deploymentTenantIdLike
Description copied from interface:ServiceDeploymentQuery
Only select deployments with a tenant id like the given one.- Specified by:
deploymentTenantIdLike
in interfaceServiceDeploymentQuery
-
actionDefinitionKey
Description copied from interface:ServiceDeploymentQuery
Only select deployments with the given action definition key.- Specified by:
actionDefinitionKey
in interfaceServiceDeploymentQuery
-
actionDefinitionKeyLike
Description copied from interface:ServiceDeploymentQuery
Only select deployments with a action definition key like the given string.- Specified by:
actionDefinitionKeyLike
in interfaceServiceDeploymentQuery
-
latest
Description copied from interface:ServiceDeploymentQuery
Only select the latest deployments per deployment key.- Specified by:
latest
in interfaceServiceDeploymentQuery
-
orderByDeploymentId
Description copied from interface:ServiceDeploymentQuery
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentId
in interfaceServiceDeploymentQuery
-
orderByDeploymentTime
Description copied from interface:ServiceDeploymentQuery
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentTime
in interfaceServiceDeploymentQuery
-
orderByDeploymentName
Description copied from interface:ServiceDeploymentQuery
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByDeploymentName
in interfaceServiceDeploymentQuery
-
orderByTenantId
Description copied from interface:ServiceDeploymentQuery
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).- Specified by:
orderByTenantId
in interfaceServiceDeploymentQuery
-
executeCount
public long executeCount(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)- Specified by:
executeCount
in classorg.flowable.common.engine.impl.query.AbstractQuery<ServiceDeploymentQuery,ServiceDeployment>
-
executeList
public java.util.List<ServiceDeployment> executeList(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)- Specified by:
executeList
in classorg.flowable.common.engine.impl.query.AbstractQuery<ServiceDeploymentQuery,ServiceDeployment>
-
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() -
getServiceDefinitionKey
public java.lang.String getServiceDefinitionKey() -
getServiceDefinitionKeyLike
public java.lang.String getServiceDefinitionKeyLike()
-