com.plumtree.server
Class PT_JOB_SETTINGS

java.lang.Object
  extended by com.plumtree.server.PT_JOB_SETTINGS

public final class PT_JOB_SETTINGS
extends java.lang.Object

Version:
$Revision$
Author:
Mike Sample
See Also:
com.plutmree.server.IPTJob

Field Summary
static int PT_JOB_CONTINUEONERRORS
          Zero or One.
static int PT_JOB_LASTRUNTIME
          Date when the job last ran
static int PT_JOB_LOGLEVEL
          The verbosity level of the job log created when the job is run.
static int PT_JOB_NEXTRUNTIME
          Date when the job should run next
static int PT_JOB_STATUS
          Current status of job if it is running or the last time when it was run, can be any of the values of PT_JOBSTATUS.
static int PT_JOB_TIMEOUT
          The maximum amount of time for the job to run.
static int PT_JOB_TIMEOUT_UNITS
          Time units for the maximum amount of time for the job to run.
 
Constructor Summary
PT_JOB_SETTINGS()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PT_JOB_NEXTRUNTIME

public static final int PT_JOB_NEXTRUNTIME
Date when the job should run next

See Also:
Constant Field Values

PT_JOB_LASTRUNTIME

public static final int PT_JOB_LASTRUNTIME
Date when the job last ran

See Also:
Constant Field Values

PT_JOB_LOGLEVEL

public static final int PT_JOB_LOGLEVEL
The verbosity level of the job log created when the job is run.

See Also:
Constant Field Values

PT_JOB_TIMEOUT

public static final int PT_JOB_TIMEOUT
The maximum amount of time for the job to run. This includes all operations. 0 (the default) indicates the job should run until it is finished. Use with PT_JOB_TIMEOUT_UNITS

See Also:
Constant Field Values

PT_JOB_TIMEOUT_UNITS

public static final int PT_JOB_TIMEOUT_UNITS
Time units for the maximum amount of time for the job to run. Can be PT_SCHEDULETYPE_MINUTELY or PT_SCHEDULETYPE_HOURLY. See PT_JOB_TIMEOUT.

See Also:
Constant Field Values

PT_JOB_CONTINUEONERRORS

public static final int PT_JOB_CONTINUEONERRORS
Zero or One. 0=default. Indicates that the job should ignore an operation failure and attempt to run all operations.

See Also:
Constant Field Values

PT_JOB_STATUS

public static final int PT_JOB_STATUS
Current status of job if it is running or the last time when it was run, can be any of the values of PT_JOBSTATUS.

See Also:
Constant Field Values
Constructor Detail

PT_JOB_SETTINGS

public PT_JOB_SETTINGS()