Package com.openkm.bean
Class TaskExecution
- java.lang.Object
-
- com.openkm.bean.TaskExecution
-
public class TaskExecution extends Object
Task execution bean.- Author:
- jabad
-
-
Constructor Summary
Constructors Constructor Description TaskExecution(long id, long taskId, String state, Date startDate, Date endDate)Public constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetEndDate()Get end date.longgetId()Get id.DategetStartDate()Get start date.StringgetState()Get state.longgetTaskId()Get task id.
-
-
-
Method Detail
-
getId
public long getId()
Get id.- Returns:
- id
-
getTaskId
public long getTaskId()
Get task id.- Returns:
- task id
-
getState
public String getState()
Get state.- Returns:
- state state
-
getStartDate
public Date getStartDate()
Get start date.- Returns:
- start date
-
getEndDate
public Date getEndDate()
Get end date.- Returns:
- end date
-
-