Class ActivityExecution
- java.lang.Object
-
- io.vertigo.orchestra.services.report.ActivityExecution
-
- All Implemented Interfaces:
Serializable
public final class ActivityExecution extends Object implements Serializable
Representation of an activityExecution- Author:
- mlaroche
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetAceId()InstantgetBeginTime()InstantgetEndTime()IntegergetExecutionTime()BooleangetHasLogFile()BooleangetHasTechnicalLog()StringgetLabel()StringgetStatus()StringgetWorkspaceIn()StringgetWorkspaceOut()
-
-
-
Constructor Detail
-
ActivityExecution
public ActivityExecution(Long aceId, String label, Instant beginTime, Instant endTime, Integer executionTime, String status, String workspaceIn, String workspaceOut, Boolean hasLogFile, Boolean hasTechnicalLog)
Constructor.- Parameters:
aceId- if of activity executionlabel- label of activitybeginTime- begin tumeendTime- end timeexecutionTime- execution time in secondsstatus- status of activityworkspaceIn- the workspace as input parameterworkspaceOut- the workspace as output parameterhasLogFile- if the activity has a logfilehasTechnicalLog- of the activity has a technical logfile
-
-
Method Detail
-
getAceId
public Long getAceId()
-
getLabel
public String getLabel()
-
getBeginTime
public Instant getBeginTime()
-
getEndTime
public Instant getEndTime()
-
getExecutionTime
public Integer getExecutionTime()
-
getStatus
public String getStatus()
-
getWorkspaceIn
public String getWorkspaceIn()
-
getWorkspaceOut
public String getWorkspaceOut()
-
getHasLogFile
public Boolean getHasLogFile()
-
getHasTechnicalLog
public Boolean getHasTechnicalLog()
-
-