Package de.valtech.aecu.api.service
Interface HistoryEntry
-
@ProviderType public interface HistoryEntryHistory entry for an execution run.- Author:
- Roland Gruber
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHistoryEntry.RESULTExecution result (e.g.static classHistoryEntry.STATEExecution state (e.g.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetEnd()Returns the end time of the execution.StringgetRepositoryPath()Returns the path in repository where the history is stored.HistoryEntry.RESULTgetResult()Returns the global result of the run.List<ExecutionResult>getSingleResults()Returns the single script runs.DategetStart()Returns the start time of the execution.HistoryEntry.STATEgetState()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
-
-