Uses of Record Class
at.jku.dke.etutor.task_app.dto.TaskModificationResponseDto
Packages that use TaskModificationResponseDto
Package
Description
This package contains controller interfaces that task apps should implement.
This package contains base classes of services that can be used to manage tasks, ...
-
Uses of TaskModificationResponseDto in at.jku.dke.etutor.task_app.controllers
Methods in at.jku.dke.etutor.task_app.controllers that return types with arguments of type TaskModificationResponseDtoModifier and TypeMethodDescriptionBaseTaskControllerWithoutRequestMapping.create
(long id, ModifyTaskDto<A> dto) Creates a new task.TaskController.create
(long id, ModifyTaskDto<T> dto) Creates a new task.BaseTaskControllerWithoutRequestMapping.update
(long id, ModifyTaskDto<A> dto) Updates the task data.TaskController.update
(long id, ModifyTaskDto<T> dto) Updates the task data. -
Uses of TaskModificationResponseDto in at.jku.dke.etutor.task_app.services
Methods in at.jku.dke.etutor.task_app.services that return TaskModificationResponseDtoModifier and TypeMethodDescriptionBaseTaskService.create
(long id, @Valid ModifyTaskDto<S> dto) Creates a new task.TaskService.create
(long id, @Valid ModifyTaskDto<S> dto) Creates a new task.protected TaskModificationResponseDto
BaseTaskService.mapToReturnData
(T task, boolean create) Maps the task to the data that should be returned to the task administration UI.BaseTaskService.update
(long id, @Valid ModifyTaskDto<S> dto) Updates an existing task.TaskService.update
(long id, @Valid ModifyTaskDto<S> dto) Updates an existing task.