Interface ScheduleEntryState
- All Superinterfaces:
LogfileProvider
Interface representing a schedule entry execution state.
- Since:
- 4.0
-
Method Summary
Modifier and TypeMethodDescriptionThe date execution of thisScheduleEntry
has been finished.long
getId()
Returns the execution id.The date execution of thisScheduleEntry
has been started.getState()
The execution state of thisScheduleEntry
.A list ofTaskResult
which describes the state of each task depending on thisScheduleEntry
.Methods inherited from interface de.espirit.firstspirit.access.schedule.LogfileProvider
getLogfile, getLogfileSize
-
Method Details
-
getId
long getId()Returns the execution id.- Returns:
- The execution id.
- Since:
- 4.0
-
getStartTime
Date getStartTime()The date execution of thisScheduleEntry
has been started.- Returns:
- The date execution of this
ScheduleEntry
has been started. - Since:
- 4.0
-
getFinishTime
Date getFinishTime()The date execution of thisScheduleEntry
has been finished.- Returns:
- The date execution of this
ScheduleEntry
has been finished. - Since:
- 4.0
-
getTaskResults
List<TaskResult> getTaskResults()A list ofTaskResult
which describes the state of each task depending on thisScheduleEntry
.- Returns:
- A list of
TaskResult
which describes the state of each task depending on thisScheduleEntry
. - Since:
- 4.0
-
getState
RunState getState()The execution state of thisScheduleEntry
.- Returns:
- The execution state of this
ScheduleEntry
. - Since:
- 4.0
-