Interface Task
- All Known Subinterfaces:
TaskInGroup<T>
- All Known Implementing Classes:
BaseTask
,BaseTaskInGroup
public interface Task
Interface for task entity.
-
Method Summary
Modifier and TypeMethodDescriptiongetId()
Gets the id.Gets the max points.Gets the status.void
Sets the id.void
setMaxPoints
(BigDecimal maxPoints) Sets the max points.void
setStatus
(TaskStatus status) Sets the status.
-
Method Details
-
getId
Long getId()Gets the id.- Returns:
- The id.
-
setId
Sets the id.- Parameters:
id
- The id.
-
getMaxPoints
BigDecimal getMaxPoints()Gets the max points.- Returns:
- The max points.
-
setMaxPoints
Sets the max points.- Parameters:
maxPoints
- The max points.
-
getStatus
TaskStatus getStatus()Gets the status.- Returns:
- The status.
-
setStatus
Sets the status.- Parameters:
status
- The status.
-