Uses of Interface
org.flowable.engine.ManagementService
-
Packages that use ManagementService Package Description org.flowable.engine Public API of the Flowable engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments.
RuntimeService: For starting and searchingProcessInstances.
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.org.flowable.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.flowable.engine.impl.cfg org.flowable.engine.impl.delete org.flowable.engine.impl.test org.flowable.engine.test Helper classes for testing processes. -
-
Uses of ManagementService in org.flowable.engine
Methods in org.flowable.engine that return ManagementService Modifier and Type Method Description ManagementServiceProcessEngine. getManagementService()abstract ManagementServiceProcessEngineConfiguration. getManagementService() -
Uses of ManagementService in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement ManagementService Modifier and Type Class Description classManagementServiceImplFields in org.flowable.engine.impl declared as ManagementService Modifier and Type Field Description protected ManagementServiceProcessEngineImpl. managementServiceMethods in org.flowable.engine.impl that return ManagementService Modifier and Type Method Description ManagementServiceProcessEngineImpl. getManagementService() -
Uses of ManagementService in org.flowable.engine.impl.cfg
Fields in org.flowable.engine.impl.cfg declared as ManagementService Modifier and Type Field Description protected ManagementServiceProcessEngineConfigurationImpl. managementServiceMethods in org.flowable.engine.impl.cfg that return ManagementService Modifier and Type Method Description ManagementServiceProcessEngineConfigurationImpl. getManagementService()Methods in org.flowable.engine.impl.cfg with parameters of type ManagementService Modifier and Type Method Description ProcessEngineConfigurationImplProcessEngineConfigurationImpl. setManagementService(ManagementService managementService) -
Uses of ManagementService in org.flowable.engine.impl.delete
Methods in org.flowable.engine.impl.delete with parameters of type ManagementService Modifier and Type Method Description protected org.flowable.batch.api.BatchPartQueryComputeDeleteHistoricProcessInstanceStatusJobHandler. createStatusQuery(org.flowable.batch.api.Batch batch, ManagementService managementService)protected org.flowable.batch.api.BatchPartQueryDeleteHistoricProcessInstanceIdsStatusJobHandler. createStatusQuery(org.flowable.batch.api.Batch batch, ManagementService managementService) -
Uses of ManagementService in org.flowable.engine.impl.test
Fields in org.flowable.engine.impl.test declared as ManagementService Modifier and Type Field Description protected ManagementServiceAbstractFlowableTestCase. managementServiceMethods in org.flowable.engine.impl.test with parameters of type ManagementService Modifier and Type Method Description static booleanHistoryTestHelper. areHistoryJobsAvailable(ManagementService managementService)static booleanJobTestHelper. areJobsAvailable(ManagementService managementService)static booleanJobTestHelper. areJobsOrExecutableTimersAvailable(ManagementService managementService)static booleanJobTestHelper. areJobsOrTimersAvailable(ManagementService managementService)Returns true when there are any entries for the jobs or timers (unlikeJobTestHelper.areJobsOrExecutableTimersAvailable(ManagementService), which only take in account executable timers).protected static voidJobTestHelper. internalWaitForJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, Predicate<ManagementService> jobsAvailablePredicate, long maxMillisToWait, long intervalMillis, boolean shutdownExecutorWhenFinished)static voidHistoryTestHelper. waitForJobExecutorToProcessAllHistoryJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis)static voidHistoryTestHelper. waitForJobExecutorToProcessAllHistoryJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis, boolean shutdownExecutorWhenFinished)static voidJobTestHelper. waitForJobExecutorToProcessAllJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis)static voidJobTestHelper. waitForJobExecutorToProcessAllJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis, boolean shutdownExecutorWhenFinished)static voidJobTestHelper. waitForJobExecutorToProcessAllJobsAndExecutableTimerJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis)static voidJobTestHelper. waitForJobExecutorToProcessAllJobsAndExecutableTimerJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis, boolean shutdownExecutorWhenFinished)static voidJobTestHelper. waitForJobExecutorToProcessAllJobsAndTimerJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis)static voidJobTestHelper. waitForJobExecutorToProcessAllJobsAndTimerJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, long maxMillisToWait, long intervalMillis, boolean shutdownExecutorWhenFinished)Method parameters in org.flowable.engine.impl.test with type arguments of type ManagementService Modifier and Type Method Description protected static voidJobTestHelper. internalWaitForJobs(ProcessEngineConfiguration processEngineConfiguration, ManagementService managementService, Predicate<ManagementService> jobsAvailablePredicate, long maxMillisToWait, long intervalMillis, boolean shutdownExecutorWhenFinished) -
Uses of ManagementService in org.flowable.engine.test
Fields in org.flowable.engine.test declared as ManagementService Modifier and Type Field Description protected ManagementServiceFlowableRule. managementServiceprotected ManagementServiceFlowableTestCase. managementServiceMethods in org.flowable.engine.test that return ManagementService Modifier and Type Method Description ManagementServiceFlowableRule. getManagementService()Methods in org.flowable.engine.test with parameters of type ManagementService Modifier and Type Method Description voidFlowableRule. setManagementService(ManagementService managementService)
-