public class JobInfo
extends java.lang.Object
| Constructor and Description |
|---|
JobInfo(java.lang.String name,
int executionCount,
boolean launchable)
Construct JobInfo
|
JobInfo(java.lang.String name,
int executionCount,
boolean launchable,
boolean incrementable)
Construct JobInfo
|
JobInfo(java.lang.String name,
int executionCount,
boolean launchable,
boolean incrementable,
boolean deployed)
Construct JobInfo
|
JobInfo(java.lang.String name,
int executionCount,
java.lang.Long jobInstanceId,
boolean launchable,
boolean incrementable,
boolean deployed)
Construct JobInfo
|
| Modifier and Type | Method and Description |
|---|---|
int |
getExecutionCount() |
java.lang.Long |
getJobInstanceId() |
java.lang.String |
getName() |
boolean |
isDeployed()
Return the deployment status from job info.
|
boolean |
isIncrementable() |
boolean |
isLaunchable() |
public JobInfo(java.lang.String name,
int executionCount,
boolean launchable)
name - the name of the jobexecutionCount - the number of executionslaunchable - flag to specify if the job is launchablepublic JobInfo(java.lang.String name,
int executionCount,
boolean launchable,
boolean incrementable)
name - the name of the jobexecutionCount - the number of executionslaunchable - flag to specify if the job is launchableincrementable - flag to specify if the job parameter is incrementablepublic JobInfo(java.lang.String name,
int executionCount,
boolean launchable,
boolean incrementable,
boolean deployed)
name - the name of the jobexecutionCount - the number of executionslaunchable - flag to specify if the job is launchableincrementable - flag to specify if the job parameter is incrementablepublic JobInfo(java.lang.String name,
int executionCount,
java.lang.Long jobInstanceId,
boolean launchable,
boolean incrementable,
boolean deployed)
name - the name of the jobexecutionCount - the number of executionsjobInstanceId - the job instnace id associated with this job infolaunchable - flag to specify if the job is launchableincrementable - flag to specify if the job parameter is incrementabledeployed - flag to specify if the job is deployedpublic java.lang.String getName()
public int getExecutionCount()
public java.lang.Long getJobInstanceId()
public boolean isLaunchable()
public boolean isIncrementable()
public boolean isDeployed()