Package org.flowable.cmmn.api
Interface CmmnManagementService
- All Known Implementing Classes:
CmmnManagementServiceImpl
public interface CmmnManagementService
- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bulkMoveDeadLetterJobs
(Collection<String> jobIds, int retries) Moves a bulk of jobs that are in the dead letter job table back to the executable job table, and resets the retries (as the retries was 0 when it was put into the dead letter job table).void
bulkMoveDeadLetterJobsToHistoryJobs
(Collection<String> jobIds, int retries) Moves a bulk of jobs that are in the dead letter job table back to be history jobs, and resets the retries (as the retries was 0 when it was put into the dead letter job table).createBatchPartBuilder
(Batch batch) Returns a new BatchPartQuery implementation, that can be used to dynamically query the batch parts.Returns a new BatchQuery implementation, that can be used to dynamically query the batches.createChangeTenantIdBuilder
(String fromTenantId, String toTenantId) Create aChangeTenantIdBuilder
that can be used to change the tenant id of the case instances and all the related instances.createCmmnExternalWorkerTransitionBuilder
(String externalJobId, String workerId) Create aCmmnExternalWorkerTransitionBuilder
that can be used to transition the status of the external worker job.Returns a new DeadLetterJobQuery implementation, that can be used to query the dead letter jobs.Create anExternalWorkerJobAcquireBuilder
that can be used to acquire jobs for an external worker.createExternalWorkerJobFailureBuilder
(String externalJobId, String workerId) Create anExternalWorkerJobFailureBuilder
that can be used to fail an external worker job.Returns a new ExternalWorkerJobQuery implementation, that can be used to dynamically query the external worker jobs.Returns a new HistoryJobQuery implementation, that can be used to dynamically query the history jobs.Returns a new JobQuery implementation, that can be used to query the jobs.Returns a new SuspendedJobQuery implementation, that can be used to query the suspended jobs.Returns a new TimerJobQuery implementation, that can be used to query the timer jobs.void
deleteBatch
(String batchId) void
deleteDeadLetterJob
(String jobId) Delete the dead letter job with the provided id.void
deleteHistoryJob
(String jobId) Delete the history job with the provided id.void
Delete the job with the provided id.void
deleteSuspendedJob
(String jobId) Delete the suspended job with the provided id.void
deleteTimerJob
(String jobId) Delete the timer job with the provided id.void
executeHistoryJob
(String historyJobId) Forced synchronous execution of a historyJob (eg.void
executeJob
(String jobId) Forced synchronous execution of a job (eg.Returns the full stacktrace of the exception that occurs when the deadletter job with the given id was last executed.Returns the full error details that were passed to the External workerJob
when the job was last failed.getHistoryJobHistoryJson
(String historyJobId) Get the advanced configuration (storing the history json data) of aHistoryJob
.getJobExceptionStacktrace
(String jobId) Returns the full stacktrace of the exception that occurs when the job with the given id was last executed.Returns the full stacktrace of the exception that occurs when the suspended with the given id was last executed.Returns a map containing {tableName, rowCount} values.Returns all relational database tables of the engine.Returns the full stacktrace of the exception that occurs when the timer job with the given id was last executed.void
moveDeadLetterJobToExecutableJob
(String jobId, int retries) Moves a job that is in the dead letter job table back to be an executable job, and resetting the retries (as the retries were probably 0 when it was put into the dead letter job table).moveDeadLetterJobToHistoryJob
(String jobId, int retries) Moves a job that is in the dead letter job table back to be a history job, and resetting the retries (as the retries was 0 when it was put into the dead letter job table).moveJobToDeadLetterJob
(String jobId) Moves a job to the dead letter job table (eg.Moves a suspended job from the suspended letter job table back to be an executable job.moveTimerToExecutableJob
(String jobId) Moves a timer job to the executable job table (eg.rescheduleTimeDateJob
(String jobId, Date timeDate) Reschedule a timer job with a new date value.rescheduleTimeDateValueJob
(String jobId, String timeDateValue) Reschedule a timer job with a time date value.rescheduleTimerEventListenerInstanceWithDate
(String eventListenerInstanceId, Date timeDate) Reschedule a timer event listener instance with a new date value.rescheduleTimerEventListenerInstanceWithDateValue
(String eventListenerInstanceId, String timeDateValue) Reschedule a timer event listener instance with a time date value.void
setJobRetries
(String jobId, int retries) Sets the number of retries that a job has left.void
setTimerJobRetries
(String jobId, int retries) Sets the number of retries that a timer job has left.void
Unaquire all locked external worker jobs for worker.void
unacquireAllExternalWorkerJobsForWorker
(String workerId, String tenantId) Unaquire all locked external worker jobs for worker and tenant.void
unacquireExternalWorkerJob
(String jobId, String workerId) Unaquire a locked external worker job.
-
Method Details
-
getTableCounts
Returns a map containing {tableName, rowCount} values. -
getTableNames
Collection<String> getTableNames()Returns all relational database tables of the engine. -
createJobQuery
JobQuery createJobQuery()Returns a new JobQuery implementation, that can be used to query the jobs. -
createExternalWorkerJobQuery
ExternalWorkerJobQuery createExternalWorkerJobQuery()Returns a new ExternalWorkerJobQuery implementation, that can be used to dynamically query the external worker jobs. -
createTimerJobQuery
TimerJobQuery createTimerJobQuery()Returns a new TimerJobQuery implementation, that can be used to query the timer jobs. -
createSuspendedJobQuery
SuspendedJobQuery createSuspendedJobQuery()Returns a new SuspendedJobQuery implementation, that can be used to query the suspended jobs. -
createDeadLetterJobQuery
DeadLetterJobQuery createDeadLetterJobQuery()Returns a new DeadLetterJobQuery implementation, that can be used to query the dead letter jobs. -
executeJob
Forced synchronous execution of a job (eg. for administration or testing). The job will be executed, even if the case instance is suspended.- Parameters:
jobId
- id of the job to execute, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
moveTimerToExecutableJob
Moves a timer job to the executable job table (eg. for administration or testing). The timer job will be moved, even if the case instance is suspended.- Parameters:
jobId
- id of the timer job to move, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
moveJobToDeadLetterJob
Moves a job to the dead letter job table (eg. for administration or testing). The job will be moved, even if the case instance is suspended or there are retries left.- Parameters:
jobId
- id of the job to move, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
bulkMoveDeadLetterJobs
Moves a bulk of jobs that are in the dead letter job table back to the executable job table, and resets the retries (as the retries was 0 when it was put into the dead letter job table).- Parameters:
jobIds
- ids of the jobs to move, cannot be null.retries
- the number of retries (value greater than 0) which will be set on the jobs.- Throws:
FlowableObjectNotFoundException
- when there is no job with any of the given ids.
-
bulkMoveDeadLetterJobsToHistoryJobs
Moves a bulk of jobs that are in the dead letter job table back to be history jobs, and resets the retries (as the retries was 0 when it was put into the dead letter job table).- Parameters:
jobIds
- ids of the jobs to move, cannot be null.retries
- the number of retries (value greater than 0) which will be set on the jobs.- Throws:
FlowableObjectNotFoundException
- when one job with of the given ids is not found.
-
moveDeadLetterJobToExecutableJob
Moves a job that is in the dead letter job table back to be an executable job, and resetting the retries (as the retries were probably 0 when it was put into the dead letter job table).- Parameters:
jobId
- id of the job to move, cannot be null.retries
- the number of retries (value greater than 0) which will be set on the job.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
moveDeadLetterJobToHistoryJob
Moves a job that is in the dead letter job table back to be a history job, and resetting the retries (as the retries was 0 when it was put into the dead letter job table).- Parameters:
jobId
- id of the job to move, cannot be null.retries
- the number of retries (value greater than 0) which will be set on the job.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.FlowableIllegalArgumentException
- when the job cannot be moved to be a history job (e.g. because it's not history job)
-
moveSuspendedJobToExecutableJob
Moves a suspended job from the suspended letter job table back to be an executable job. The retries are untouched.- Parameters:
jobId
- id of the job to move, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
deleteJob
Delete the job with the provided id.- Parameters:
jobId
- id of the job to delete, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
deleteTimerJob
Delete the timer job with the provided id.- Parameters:
jobId
- id of the timer job to delete, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
deleteSuspendedJob
Delete the suspended job with the provided id.- Parameters:
jobId
- id of the suspended job to delete, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
deleteDeadLetterJob
Delete the dead letter job with the provided id.- Parameters:
jobId
- id of the dead letter job to delete, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
setJobRetries
Sets the number of retries that a job has left. Whenever the JobExecutor fails to execute a job, this value is decremented. When it hits zero, the job is supposed to be dead and not retried again. In that case, this method can be used to increase the number of retries.- Parameters:
jobId
- id of the job to modify, cannot be null.retries
- number of retries.
-
setTimerJobRetries
Sets the number of retries that a timer job has left. Whenever the JobExecutor fails to execute a timer job, this value is decremented. When it hits zero, the job is supposed to be dead and not retried again. In that case, this method can be used to increase the number of retries.- Parameters:
jobId
- id of the timer job to modify, cannot be null.retries
- number of retries.
-
rescheduleTimeDateJob
Reschedule a timer job with a new date value.- Parameters:
jobId
- id of the timer job to reschedule, cannot be null.timeDate
- A fixed date
-
rescheduleTimeDateValueJob
Reschedule a timer job with a time date value.- Parameters:
jobId
- id of the timer job to reschedule, cannot be null.timeDateValue
- A fixed date in ISO 8601 format, when job will be fired
-
rescheduleTimerEventListenerInstanceWithDate
Reschedule a timer event listener instance with a new date value.- Parameters:
eventListenerInstanceId
- id of the timer event listener instance to reschedule, cannot be null.timeDate
- A fixed date
-
rescheduleTimerEventListenerInstanceWithDateValue
Job rescheduleTimerEventListenerInstanceWithDateValue(String eventListenerInstanceId, String timeDateValue) Reschedule a timer event listener instance with a time date value.- Parameters:
eventListenerInstanceId
- id of the timer event listener instance to reschedule, cannot be null.timeDateValue
- A fixed date in ISO 8601 format, when job will be fired
-
getJobExceptionStacktrace
Returns the full stacktrace of the exception that occurs when the job with the given id was last executed. Returns null when the job has no exception stacktrace.- Parameters:
jobId
- id of the job, cannot be null.- Throws:
FlowableObjectNotFoundException
- when no job exists with the given id.
-
getTimerJobExceptionStacktrace
Returns the full stacktrace of the exception that occurs when the timer job with the given id was last executed. Returns null when the job has no exception stacktrace.- Parameters:
jobId
- id of the job, cannot be null.- Throws:
FlowableObjectNotFoundException
- when no job exists with the given id.
-
getSuspendedJobExceptionStacktrace
Returns the full stacktrace of the exception that occurs when the suspended with the given id was last executed. Returns null when the job has no exception stacktrace.- Parameters:
jobId
- id of the job, cannot be null.- Throws:
FlowableObjectNotFoundException
- when no job exists with the given id.
-
getDeadLetterJobExceptionStacktrace
Returns the full stacktrace of the exception that occurs when the deadletter job with the given id was last executed. Returns null when the job has no exception stacktrace.- Parameters:
jobId
- id of the job, cannot be null.- Throws:
FlowableObjectNotFoundException
- when no job exists with the given id.
-
getExternalWorkerJobErrorDetails
Returns the full error details that were passed to the External workerJob
when the job was last failed. Returns null when the job has no error details.- Parameters:
jobId
- id of the job, cannot be null.- Throws:
FlowableObjectNotFoundException
- when no job exists with the given id.
-
handleHistoryCleanupTimerJob
void handleHistoryCleanupTimerJob() -
createBatchQuery
BatchQuery createBatchQuery()Returns a new BatchQuery implementation, that can be used to dynamically query the batches. -
createBatchBuilder
BatchBuilder createBatchBuilder() -
createBatchPartQuery
BatchPartQuery createBatchPartQuery()Returns a new BatchPartQuery implementation, that can be used to dynamically query the batch parts. -
createBatchPartBuilder
-
deleteBatch
-
createHistoryJobQuery
HistoryJobQuery createHistoryJobQuery()Returns a new HistoryJobQuery implementation, that can be used to dynamically query the history jobs. -
executeHistoryJob
Forced synchronous execution of a historyJob (eg. for administration or testing).- Parameters:
historyJobId
- id of the historyjob to execute, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no historyJob with the given id.
-
getHistoryJobHistoryJson
Get the advanced configuration (storing the history json data) of aHistoryJob
.- Parameters:
historyJobId
- id of the history job to execute, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no historyJob with the given id.
-
deleteHistoryJob
Delete the history job with the provided id.- Parameters:
jobId
- id of the history job to delete, cannot be null.- Throws:
FlowableObjectNotFoundException
- when there is no job with the given id.
-
createExternalWorkerJobAcquireBuilder
ExternalWorkerJobAcquireBuilder createExternalWorkerJobAcquireBuilder()Create anExternalWorkerJobAcquireBuilder
that can be used to acquire jobs for an external worker. -
createExternalWorkerJobFailureBuilder
ExternalWorkerJobFailureBuilder createExternalWorkerJobFailureBuilder(String externalJobId, String workerId) Create anExternalWorkerJobFailureBuilder
that can be used to fail an external worker job.- Parameters:
externalJobId
- the id of the external worker jobworkerId
- the id of the worker doing the action
-
createCmmnExternalWorkerTransitionBuilder
CmmnExternalWorkerTransitionBuilder createCmmnExternalWorkerTransitionBuilder(String externalJobId, String workerId) Create aCmmnExternalWorkerTransitionBuilder
that can be used to transition the status of the external worker job. -
unacquireExternalWorkerJob
Unaquire a locked external worker job. -
unacquireAllExternalWorkerJobsForWorker
Unaquire all locked external worker jobs for worker. -
unacquireAllExternalWorkerJobsForWorker
Unaquire all locked external worker jobs for worker and tenant. -
createChangeTenantIdBuilder
Create aChangeTenantIdBuilder
that can be used to change the tenant id of the case instances and all the related instances. SeeCmmnChangeTenantIdEntityTypes
for related instances.You must provide the source tenant id and the destination tenant id. All instances from the source tenant id in the CMMN scope will be changed to the target tenant id.
-