Uses of Class
jakarta.batch.operations.JobSecurityException
Package
Description
Provides APIs for starting, managing, and viewing results of Batch job executions, along with a set of exceptions.
-
Uses of JobSecurityException in jakarta.batch.operations
Modifier and TypeMethodDescriptionvoid
JobOperator.abandon
(long executionId) Set batch status to ABANDONED.JobOperator.getJobExecution
(long executionId) Return job execution for specified execution id.JobOperator.getJobExecutions
(JobInstance instance) Return all job executions belonging to the specified job instance.JobOperator.getJobInstance
(long executionId) Return the job instance for the specified execution id.int
JobOperator.getJobInstanceCount
(String jobName) Returns number of instances of a job with a particular name.JobOperator.getJobInstances
(String jobName, int start, int count) Returns all JobInstances belonging to a job with a particular name in reverse chronological order.JobOperator.getJobNames()
Returns a set of all job names known to the batch runtime.JobOperator.getParameters
(long executionId) Returns job parameters for a specified job instance.JobOperator.getRunningExecutions
(String jobName) Returns execution ids for job instances with the specified name that have running executions.JobOperator.getStepExecutions
(long jobExecutionId) Return StepExecutions for specified execution id.long
JobOperator.restart
(long executionId, Properties restartParameters) Restarts a failed or stopped job instance, which executes asynchronously.long
JobOperator.start
(String jobXMLName, Properties jobParameters) Creates a new job instance and starts the first execution of that instance, which executes asynchronously.void
JobOperator.stop
(long executionId) Request a running job execution stops.