Uses of Class
pro.taskana.task.rest.models.TaskCommentRepresentationModel
-
Packages that use TaskCommentRepresentationModel Package Description pro.taskana.task.rest pro.taskana.task.rest.assembler pro.taskana.task.rest.models -
-
Uses of TaskCommentRepresentationModel in pro.taskana.task.rest
Methods in pro.taskana.task.rest that return types with arguments of type TaskCommentRepresentationModel Modifier and Type Method Description org.springframework.http.ResponseEntity<TaskCommentRepresentationModel>TaskCommentController. createTaskComment(String taskId, TaskCommentRepresentationModel taskCommentRepresentationModel)This endpoint creates a Task Comment.org.springframework.http.ResponseEntity<TaskCommentRepresentationModel>TaskCommentController. deleteTaskComment(String taskCommentId)This endpoint deletes a given Task Comment.org.springframework.http.ResponseEntity<TaskCommentRepresentationModel>TaskCommentController. getTaskComment(String taskCommentId)This endpoint retrieves a Task Comment.org.springframework.http.ResponseEntity<TaskCommentRepresentationModel>TaskCommentController. updateTaskComment(String taskCommentId, TaskCommentRepresentationModel taskCommentRepresentationModel)This endpoint updates a given Task Comment.Methods in pro.taskana.task.rest with parameters of type TaskCommentRepresentationModel Modifier and Type Method Description org.springframework.http.ResponseEntity<TaskCommentRepresentationModel>TaskCommentController. createTaskComment(String taskId, TaskCommentRepresentationModel taskCommentRepresentationModel)This endpoint creates a Task Comment.org.springframework.http.ResponseEntity<TaskCommentRepresentationModel>TaskCommentController. updateTaskComment(String taskCommentId, TaskCommentRepresentationModel taskCommentRepresentationModel)This endpoint updates a given Task Comment. -
Uses of TaskCommentRepresentationModel in pro.taskana.task.rest.assembler
Methods in pro.taskana.task.rest.assembler that return TaskCommentRepresentationModel Modifier and Type Method Description TaskCommentRepresentationModelTaskCommentRepresentationModelAssembler. toModel(pro.taskana.task.api.models.TaskComment taskComment)Methods in pro.taskana.task.rest.assembler with parameters of type TaskCommentRepresentationModel Modifier and Type Method Description pro.taskana.task.api.models.TaskCommentTaskCommentRepresentationModelAssembler. toEntityModel(TaskCommentRepresentationModel repModel)Method parameters in pro.taskana.task.rest.assembler with type arguments of type TaskCommentRepresentationModel Modifier and Type Method Description TaskCommentCollectionRepresentationModelTaskCommentRepresentationModelAssembler. buildCollectionEntity(List<TaskCommentRepresentationModel> content) -
Uses of TaskCommentRepresentationModel in pro.taskana.task.rest.models
Methods in pro.taskana.task.rest.models that return types with arguments of type TaskCommentRepresentationModel Modifier and Type Method Description Collection<TaskCommentRepresentationModel>TaskCommentCollectionRepresentationModel. getContent()The embedded task comments.Constructor parameters in pro.taskana.task.rest.models with type arguments of type TaskCommentRepresentationModel Constructor Description TaskCommentCollectionRepresentationModel(Collection<TaskCommentRepresentationModel> content)
-