Package pro.taskana.task.rest.models
Class TaskCommentRepresentationModel
- java.lang.Object
-
- org.springframework.hateoas.RepresentationModel<TaskCommentRepresentationModel>
-
- pro.taskana.task.rest.models.TaskCommentRepresentationModel
-
public class TaskCommentRepresentationModel extends org.springframework.hateoas.RepresentationModel<TaskCommentRepresentationModel>
EntityModel class forTaskComment.
-
-
Constructor Summary
Constructors Constructor Description TaskCommentRepresentationModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InstantgetCreated()StringgetCreator()InstantgetModified()StringgetTaskCommentId()StringgetTaskId()StringgetTextField()voidsetCreated(Instant created)voidsetCreator(String creator)voidsetModified(Instant modified)voidsetTaskCommentId(String taskCommentId)voidsetTaskId(String taskId)voidsetTextField(String textField)
-
-
-
Method Detail
-
getTaskCommentId
public String getTaskCommentId()
-
setTaskCommentId
public void setTaskCommentId(String taskCommentId)
-
getTaskId
public String getTaskId()
-
setTaskId
public void setTaskId(String taskId)
-
getTextField
public String getTextField()
-
setTextField
public void setTextField(String textField)
-
getCreator
public String getCreator()
-
setCreator
public void setCreator(String creator)
-
getCreated
public Instant getCreated()
-
setCreated
public void setCreated(Instant created)
-
getModified
public Instant getModified()
-
setModified
public void setModified(Instant modified)
-
-