Package de.valtech.aecu.api.service
Interface HistoryEntry
-
@ProviderType public interface HistoryEntry
History entry for an execution run.- Author:
- Roland Gruber
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
HistoryEntry.RESULT
Execution result (e.g.static class
HistoryEntry.STATE
Execution state (e.g.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Date
getEnd()
Returns the end time of the execution.String
getRepositoryPath()
Returns the path in repository where the history is stored.HistoryEntry.RESULT
getResult()
Returns the global result of the run.List<ExecutionResult>
getSingleResults()
Returns the single script runs.Date
getStart()
Returns the start time of the execution.HistoryEntry.STATE
getState()
Returns the current state of the run.
-
-
-
Method Detail
-
getStart
Date getStart()
Returns the start time of the execution.- Returns:
- start
-
getEnd
Date getEnd()
Returns the end time of the execution.- Returns:
- end
-
getSingleResults
List<ExecutionResult> getSingleResults()
Returns the single script runs.- Returns:
- single results
-
getState
HistoryEntry.STATE getState()
Returns the current state of the run.- Returns:
- state
-
getResult
HistoryEntry.RESULT getResult()
Returns the global result of the run.- Returns:
- result
-
getRepositoryPath
String getRepositoryPath()
Returns the path in repository where the history is stored.- Returns:
- path
-
-