Package com.flowable.core.app.api
Interface CoreAppDefinitionQuery
- All Superinterfaces:
org.flowable.app.api.repository.AppDefinitionBaseQuery<CoreAppDefinitionQuery,CoreAppDefinition>
,org.flowable.common.engine.api.query.Query<CoreAppDefinitionQuery,CoreAppDefinition>
- All Known Implementing Classes:
CoreAppDefinitionQueryImpl
public interface CoreAppDefinitionQuery extends org.flowable.app.api.repository.AppDefinitionBaseQuery<CoreAppDefinitionQuery,CoreAppDefinition>
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description CoreAppDefinitionQuery
appUrl(java.lang.String appUrl)
Only select app definitions with the given app url.CoreAppDefinitionQuery
onlyFlowApps()
Only select flow app definitions of the given type.CoreAppDefinitionQuery
state(java.lang.String state)
Only select app definitions with the given state.CoreAppDefinitionQuery
subState(java.lang.String subState)
Only select app definitions with the given sub state.CoreAppDefinitionQuery
subType(java.lang.String subType)
Only select app definitions with the given sub type.CoreAppDefinitionQuery
type(java.lang.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 Details
-
onlyFlowApps
CoreAppDefinitionQuery onlyFlowApps()Only select flow app definitions of the given type. -
type
Only select app definitions of the given type. -
subType
Only select app definitions with the given sub type. -
state
Only select app definitions with the given state. -
subState
Only select app definitions with the given sub state. -
appUrl
Only select app definitions with the given app url.
-