Package com.flowable.core.app.api
Interface CoreAppDefinitionQuery
-
- All Superinterfaces:
AppDefinitionBaseQuery<CoreAppDefinitionQuery,CoreAppDefinition>
,Query<CoreAppDefinitionQuery,CoreAppDefinition>
- All Known Implementing Classes:
CoreAppDefinitionQueryImpl
public interface CoreAppDefinitionQuery extends AppDefinitionBaseQuery<CoreAppDefinitionQuery,CoreAppDefinition>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CoreAppDefinitionQuery
appUrl(String appUrl)
Only select app definitions with the given app url.CoreAppDefinitionQuery
onlyFlowApps()
Only select flow app definitions of the given type.CoreAppDefinitionQuery
state(String state)
Only select app definitions with the given state.CoreAppDefinitionQuery
subState(String subState)
Only select app definitions with the given sub state.CoreAppDefinitionQuery
subType(String subType)
Only select app definitions with the given sub type.CoreAppDefinitionQuery
type(String type)
Only select app definitions of the given type.-
Methods inherited from interface org.flowable.app.api.repository.AppDefinitionBaseQuery
appDefinitionCategory, appDefinitionCategoryLike, appDefinitionCategoryNotEquals, appDefinitionId, appDefinitionIds, appDefinitionKey, appDefinitionKeyLike, appDefinitionName, appDefinitionNameLike, appDefinitionResourceName, appDefinitionResourceNameLike, appDefinitionTenantId, appDefinitionTenantIdLike, appDefinitionVersion, appDefinitionVersionGreaterThan, appDefinitionVersionGreaterThanOrEquals, appDefinitionVersionLowerThan, appDefinitionVersionLowerThanOrEquals, appDefinitionWithoutTenantId, deploymentId, deploymentIds, latestVersion, orderByAppDefinitionCategory, orderByAppDefinitionId, orderByAppDefinitionKey, orderByAppDefinitionName, orderByAppDefinitionVersion, orderByDeploymentId, orderByTenantId
-
-
-
-
Method Detail
-
onlyFlowApps
CoreAppDefinitionQuery onlyFlowApps()
Only select flow app definitions of the given type.
-
type
CoreAppDefinitionQuery type(String type)
Only select app definitions of the given type.
-
subType
CoreAppDefinitionQuery subType(String subType)
Only select app definitions with the given sub type.
-
state
CoreAppDefinitionQuery state(String state)
Only select app definitions with the given state.
-
subState
CoreAppDefinitionQuery subState(String subState)
Only select app definitions with the given sub state.
-
appUrl
CoreAppDefinitionQuery appUrl(String appUrl)
Only select app definitions with the given app url.
-
-