Class ProcessExecution
- java.lang.Object
-
- io.vertigo.orchestra.services.report.ProcessExecution
-
- All Implemented Interfaces:
Serializable
public final class ProcessExecution extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InstantgetBeginTime()BooleangetChecked()StringgetCheckingComment()InstantgetCheckingDate()InstantgetEndTime()IntegergetExecutionTime()BooleangetHasLogFile()LonggetPreId()StringgetStatus()
-
-
-
Constructor Detail
-
ProcessExecution
public ProcessExecution(Long preId, Instant beginTime, Instant endTime, Integer executionTime, String status, Boolean checked, Instant checkingDate, String checkingComment, Boolean hasLogFile)
Constructor.- Parameters:
preId- id of executionbeginTime- begin timeendTime- end timeexecutionTime- execution time in secondsstatus- status of the executionchecked- if the execution is check (for errors)checkingDate- the date of checkingcheckingComment- the checking commhasLogFile- if the execution has an associated log
-
-
Method Detail
-
getPreId
public Long getPreId()
-
getBeginTime
public Instant getBeginTime()
-
getEndTime
public Instant getEndTime()
-
getExecutionTime
public Integer getExecutionTime()
-
getStatus
public String getStatus()
-
getChecked
public Boolean getChecked()
-
getCheckingDate
public Instant getCheckingDate()
-
getCheckingComment
public String getCheckingComment()
-
getHasLogFile
public Boolean getHasLogFile()
-
-