Uses of Interface
org.flowable.eventsubscription.api.EventSubscriptionQuery
Packages that use EventSubscriptionQuery
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
: Manages Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.TaskService
: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService
: Used for managing users, groups and the relations between them.ManagementService
: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService
: Exposes information about ongoing and past process instances.FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of EventSubscriptionQuery in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return EventSubscriptionQueryModifier and TypeMethodDescriptionCmmnRuntimeService.createEventSubscriptionQuery()
Creates a newEventSubscriptionQuery
instance, that can be used to query the event subscriptions. -
Uses of EventSubscriptionQuery in org.flowable.cmmn.engine.impl.eventregistry
Methods in org.flowable.cmmn.engine.impl.eventregistry that return EventSubscriptionQueryModifier and TypeMethodDescriptionprotected EventSubscriptionQuery
CmmnEventRegistryEventConsumer.createEventSubscriptionQuery()
-
Uses of EventSubscriptionQuery in org.flowable.cmmn.engine.impl.runtime
Methods in org.flowable.cmmn.engine.impl.runtime that return EventSubscriptionQuery -
Uses of EventSubscriptionQuery in org.flowable.cmmn.rest.service.api
Methods in org.flowable.cmmn.rest.service.api with parameters of type EventSubscriptionQueryModifier and TypeMethodDescriptionvoid
CmmnRestApiInterceptor.accessEventSubscriptionInfoWithQuery
(EventSubscriptionQuery eventSubscriptionQuery) -
Uses of EventSubscriptionQuery in org.flowable.engine
Methods in org.flowable.engine that return EventSubscriptionQueryModifier and TypeMethodDescriptionRuntimeService.createEventSubscriptionQuery()
Creates a newEventSubscriptionQuery
instance, that can be used to query the event subscriptions. -
Uses of EventSubscriptionQuery in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return EventSubscriptionQuery -
Uses of EventSubscriptionQuery in org.flowable.engine.impl.eventregistry
Methods in org.flowable.engine.impl.eventregistry that return EventSubscriptionQueryModifier and TypeMethodDescriptionprotected EventSubscriptionQuery
BpmnEventRegistryEventConsumer.createEventSubscriptionQuery()
-
Uses of EventSubscriptionQuery in org.flowable.eventregistry.impl.consumer
Methods in org.flowable.eventregistry.impl.consumer that return EventSubscriptionQueryModifier and TypeMethodDescriptionprotected abstract EventSubscriptionQuery
BaseEventRegistryEventConsumer.createEventSubscriptionQuery()
-
Uses of EventSubscriptionQuery in org.flowable.eventsubscription.api
Methods in org.flowable.eventsubscription.api that return EventSubscriptionQueryModifier and TypeMethodDescriptionEventSubscriptionQuery.activityId
(String activityId) Only select event subscriptions which have an activity with the given id.EventSubscriptionQuery.caseDefinitionId
(String caseDefinitionId) Only select event subscriptions which have the given case definition id.EventSubscriptionQuery.caseInstanceId
(String caseInstanceId) Only select event subscriptions which have the given case instance id.EventSubscriptionQuery.configuration
(String configuration) Only select event subscriptions with the given configuration.EventSubscriptionQuery.configurations
(Collection<String> configurations) Only select event subscriptions with the given configurations.EventSubscriptionQuery.createdAfter
(Date afterTime) Only select event subscriptions that were created after the given start time.EventSubscriptionQuery.createdBefore
(Date beforeTime) Only select event subscriptions that were created before the given start time.EventSubscriptionQuery.endOr()
End an OR statement.Only select event subscriptions with the given name.Only select event subscriptions with the given type.EventSubscriptionQuery.executionId
(String executionId) Only select event subscriptions with the given execution id.Only select event subscriptions with the given id.EventSubscriptionQuery.or()
Begin an OR statement.EventSubscriptionQuery.orderByCreateDate()
Order by create date (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderByEventName()
Order by event name (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderByExecutionId()
Order by execution id (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderById()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderByProcessDefinitionId()
Order by process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderByProcessInstanceId()
Order by process instance id (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).EventSubscriptionQuery.planItemInstanceId
(String planItemInstanceId) Only select event subscriptions which have the given plan item instance id.EventSubscriptionQuery.processDefinitionId
(String processDefinitionId) Only select event subscriptions which have the given process definition id.EventSubscriptionQuery.processInstanceId
(String processInstanceId) Only select event subscriptions which have the given process instance id.EventSubscriptionQuery.scopeDefinitionId
(String scopeDefinitionId) Only select event subscriptions which have a scope definition id with the given value.EventSubscriptionQuery.scopeDefinitionKey
(String scopeDefinitionKey) Only select event subscriptions which have a scope definition key with the given value.Only select event subscriptions which have a scope id with the given value.Only select event subscriptions which have a scope type with the given value.EventSubscriptionQuery.subScopeId
(String subScopeId) Only select event subscriptions which have a sub scope id with the given value.Only select event subscriptions with the given tenant id.EventSubscriptionQuery.tenantIds
(Collection<String> tenantIds) Only select event subscriptions with the given tenant id.EventSubscriptionQuery.withoutConfiguration()
Only select event subscriptions that have no configuration.EventSubscriptionQuery.withoutProcessDefinitionId()
Only select event subscriptions without a process definition id value.EventSubscriptionQuery.withoutProcessInstanceId()
Only select event subscriptions without a process instance id value.EventSubscriptionQuery.withoutScopeDefinitionId()
Only select event subscriptions without a scope definition id value.EventSubscriptionQuery.withoutScopeId()
Only select event subscriptions without a scope id value.EventSubscriptionQuery.withoutTenantId()
Only select event subscriptions without a tenant id. -
Uses of EventSubscriptionQuery in org.flowable.eventsubscription.service.impl
Classes in org.flowable.eventsubscription.service.impl that implement EventSubscriptionQueryMethods in org.flowable.eventsubscription.service.impl that return EventSubscriptionQueryModifier and TypeMethodDescriptionEventSubscriptionQueryImpl.endOr()
EventSubscriptionQueryImpl.or()
EventSubscriptionQueryImpl.orderByCreateDate()
EventSubscriptionQueryImpl.orderByEventName()
EventSubscriptionQueryImpl.orderByExecutionId()
EventSubscriptionQueryImpl.orderById()
EventSubscriptionQueryImpl.orderByProcessDefinitionId()
EventSubscriptionQueryImpl.orderByProcessInstanceId()
EventSubscriptionQueryImpl.orderByTenantId()
EventSubscriptionQueryImpl.tenantIds
(Collection<String> tenantIds) EventSubscriptionQueryImpl.withoutTenantId()
-
Uses of EventSubscriptionQuery in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type EventSubscriptionQueryModifier and TypeMethodDescriptionvoid
BpmnRestApiInterceptor.accessEventSubscriptionInfoWithQuery
(EventSubscriptionQuery eventSubscriptionQuery)