public class ExecutionLog extends ExecutionResult
ALL, FAILURE, SUCCESS, WARNING
Constructor and Description |
---|
ExecutionLog(java.lang.String jobName,
java.util.Date startTime,
java.util.Date finishTime,
int result,
java.lang.String message)
Constructor used by job engine.
|
Modifier and Type | Method and Description |
---|---|
java.util.Date |
getFinishTime()
The finish time of the execution.
|
java.lang.String |
getJobName()
The job name.
|
java.util.Date |
getStartTime()
The start time of the execution.
|
getMessage, getResult
public ExecutionLog(java.lang.String jobName, java.util.Date startTime, java.util.Date finishTime, int result, java.lang.String message)
jobName
- The job name.startTime
- The start time of the execution.finishTime
- The finish time of the execution.result
- The result of the execution. Valid values are SUCCESS,
FAILURE and WARNING.message
- Any message in the form of a string. This may contain detailed execution
procedure, results and/or errors.public java.util.Date getFinishTime()
public java.lang.String getJobName()
public java.util.Date getStartTime()