Uses of Interface
org.flowable.eventregistry.api.ChannelDefinitionQuery
Packages that use ChannelDefinitionQuery
-
Uses of ChannelDefinitionQuery in org.flowable.eventregistry.api
Methods in org.flowable.eventregistry.api that return ChannelDefinitionQueryModifier and TypeMethodDescriptionChannelDefinitionQuery.channelCategory
(String category) Only select channel definitions with the given category.ChannelDefinitionQuery.channelCategoryLike
(String categoryLike) Only select channel definitions where the category matches the given parameter.ChannelDefinitionQuery.channelCategoryNotEquals
(String categoryNotEquals) Only select channel definitions that have a different category then the given one.ChannelDefinitionQuery.channelCreateTime
(Date createTime) Only select channel definitions where the create time is equal to a certain date.ChannelDefinitionQuery.channelCreateTimeAfter
(Date createTimeAfter) Only select channel definitions which create time is after a certain date.ChannelDefinitionQuery.channelCreateTimeBefore
(Date createTimeBefore) Only select channel definitions which create time is before a certain date.ChannelDefinitionQuery.channelDefinitionId
(String channelDefinitionId) Only select channel definition with the given id.ChannelDefinitionQuery.channelDefinitionIds
(Set<String> channelDefinitionIds) Only select channel definitions with the given ids.ChannelDefinitionQuery.channelDefinitionKey
(String channelDefinitionKey) Only select channel definition with the given key.ChannelDefinitionQuery.channelDefinitionKeyLike
(String channelDefinitionKeyLike) Only select channel definitions where the key matches the given parameter.ChannelDefinitionQuery.channelDefinitionKeyLikeIgnoreCase
(String keyLikeIgnoreCase) Only select channel definitions where the key matches the given parameter (case-insensitive).ChannelDefinitionQuery.channelDefinitionName
(String channelDefinitionName) Only select channel definitions with the given name.ChannelDefinitionQuery.channelDefinitionNameLike
(String channelDefinitionNameLike) Only select channel definitions where the name matches the given parameter.ChannelDefinitionQuery.channelDefinitionNameLikeIgnoreCase
(String nameLikeIgnoreCase) Only select channel definitions where the name matches the given parameter (case-insensitive).ChannelDefinitionQuery.channelDefinitionResourceName
(String resourceName) Only select channel definition with the given resource name.ChannelDefinitionQuery.channelDefinitionResourceNameLike
(String resourceNameLike) Only select channel definition with a resource name like the given .ChannelDefinitionQuery.channelVersion
(Integer channelVersion) Only select channel definitions with a certain version.ChannelDefinitionQuery.channelVersionGreaterThan
(Integer channelVersion) Only select channel definitions which version are greater than a certain version.ChannelDefinitionQuery.channelVersionGreaterThanOrEquals
(Integer channelVersion) Only select channel definitions which version are greater than or equals a certain version.ChannelDefinitionQuery.channelVersionLowerThan
(Integer channelVersion) Only select channel definitions which version are lower than a certain version.ChannelDefinitionQuery.channelVersionLowerThanOrEquals
(Integer channelVersion) Only select channel definitions which version are lower than or equals a certain version.EventRepositoryService.createChannelDefinitionQuery()
ChannelDefinitionQuery.deploymentId
(String deploymentId) Only select channel definitions that are deployed in a deployment with the given deployment idChannelDefinitionQuery.deploymentIds
(Set<String> deploymentIds) Select channel definitions that are deployed in deployments with the given set of idsChannelDefinitionQuery.implementation
(String implementation) Only select the channel definitions with the given implementation.ChannelDefinitionQuery.latestVersion()
Only select the channel definitions which are the latest deployed (ie. which have the highest version number for the given key).ChannelDefinitionQuery.onlyInbound()
Only select the inbound channel definitions.ChannelDefinitionQuery.onlyOutbound()
Only select the outbound channel definitions.ChannelDefinitionQuery.orderByChannelDefinitionCategory()
Order by the category of the channel definitions (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.orderByChannelDefinitionId()
Order by the id of the channel definitions (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.orderByChannelDefinitionKey()
Order by channel definition key (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.orderByChannelDefinitionName()
Order by the name of the channel definitions (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.orderByCreateTime()
Order by create time (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).ChannelDefinitionQuery.parentDeploymentId
(String parentDeploymentId) Only select channel definitions that are deployed in a deployment with the given parent deployment idOnly select channel definitions that have the given tenant id.ChannelDefinitionQuery.tenantIdLike
(String tenantIdLike) Only select channel definitions with a tenant id like the given one.ChannelDefinitionQuery.withoutTenantId()
Only select channel definitions that do not have a tenant id.