com.ibm.websphere.longrun

Class JobStatusConstants

  1. java.lang.Object
  2. extended bycom.ibm.websphere.longrun.JobStatusConstants

  1. public class JobStatusConstants
  2. extends java.lang.Object
Represents the job status codes stored in the job scheduler database. These are the status codes returned by the job scheduler EJB and the lrcmd client.

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
CANCEL_PENDING
A cancel request was received by the job scheduler and the grid endpoint is in the process of canceling the job.
  1. static
  2. int
CANCELLED
The job has been canceled successfully.
  1. static
  2. int
DISPATCHED
A worker thread has been dispatched to execute the job
  1. static
  2. int
ENDED
Job has ended successfully.
  1. static
  2. int
EXECUTING
Job is currently executing on a grid endpoint.
  1. static
  2. int
EXECUTION_FAILED
Error occurred while running a compute-intensive job or setting up a j2ee job.
  1. static
  2. int
IN_SETUP
Job is in the process of being setup
  1. static
  2. int
NOT_STARTED
NO step status
  1. static
  2. int
PENDING_SUBMIT
A delayed job is waiting to be submitted based on the start time for the job
  1. static
  2. int
RESTARTABLE
The job is restartable.
  1. static
  2. int
RESUME_PENDING
A resume request was received by the job scheduler and the grid endpoint is in the process of resuming the job.
  1. static
  2. java.lang.String[]
statusText
Descriptive text for the job status codes.
  1. static
  2. int
STOP_PENDING
A stop request was received by the job scheduler and the grid endpoint is in the process of stopping the job.
  1. static
  2. int
STOPPED
Job is stopped.
  1. static
  2. int
SUBMITTED
Job has been submitted to the job scheduler but has not yet been started on a grid endpoint
  1. static
  2. int
SUSPEND_PENDING
A suspend request was received by the job scheduler and the grid endpoint is in the process of suspending the job.
  1. static
  2. int
SUSPENDED
Job is currently suspended on the grid endpoint
  1. static
  2. int
UNKNOWN
UNKNOWN status

Constructor Summary

Constructor and Description
JobStatusConstants()

Method Summary

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Detail

SUBMITTED

  1. public static final int SUBMITTED
Job has been submitted to the job scheduler but has not yet been started on a grid endpoint
See Also:

CANCEL_PENDING

  1. public static final int CANCEL_PENDING
A cancel request was received by the job scheduler and the grid endpoint is in the process of canceling the job.
See Also:

SUSPEND_PENDING

  1. public static final int SUSPEND_PENDING
A suspend request was received by the job scheduler and the grid endpoint is in the process of suspending the job. Applies to batch jobs only.
See Also:

RESUME_PENDING

  1. public static final int RESUME_PENDING
A resume request was received by the job scheduler and the grid endpoint is in the process of resuming the job. Applies to batch jobs only.
See Also:

EXECUTING

  1. public static final int EXECUTING
Job is currently executing on a grid endpoint.
See Also:

SUSPENDED

  1. public static final int SUSPENDED
Job is currently suspended on the grid endpoint
See Also:

CANCELLED

  1. public static final int CANCELLED
The job has been canceled successfully. Applies to compute-intensive jobs only.
See Also:

ENDED

  1. public static final int ENDED
Job has ended successfully.
See Also:

RESTARTABLE

  1. public static final int RESTARTABLE
The job is restartable. Batch jobs that fail or are canceled, go into the RESTARTABLE state. Applies to batch jobs only.
See Also:

EXECUTION_FAILED

  1. public static final int EXECUTION_FAILED
Error occurred while running a compute-intensive job or setting up a j2ee job.
See Also:

PENDING_SUBMIT

  1. public static final int PENDING_SUBMIT
A delayed job is waiting to be submitted based on the start time for the job
See Also:

STOP_PENDING

  1. public static final int STOP_PENDING
A stop request was received by the job scheduler and the grid endpoint is in the process of stopping the job.
See Also:

STOPPED

  1. public static final int STOPPED
Job is stopped. Applies to batch jobs only.
See Also:

DISPATCHED

  1. public static final int DISPATCHED
A worker thread has been dispatched to execute the job
See Also:

IN_SETUP

  1. public static final int IN_SETUP
Job is in the process of being setup
See Also:

NOT_STARTED

  1. public static final int NOT_STARTED
NO step status
See Also:

UNKNOWN

  1. public static final int UNKNOWN
UNKNOWN status
See Also:

statusText

  1. public static final java.lang.String[] statusText
Descriptive text for the job status codes.

Constructor Detail

JobStatusConstants

  1. public JobStatusConstants()