Uses of Record Class
at.jku.dke.etutor.task_app.dto.ModifyTaskDto
Packages that use ModifyTaskDto
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 ModifyTaskDto in at.jku.dke.etutor.task_app.controllers
Methods in at.jku.dke.etutor.task_app.controllers with parameters of type ModifyTaskDtoModifier 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 ModifyTaskDto in at.jku.dke.etutor.task_app.services
Methods in at.jku.dke.etutor.task_app.services with parameters of type ModifyTaskDtoModifier and TypeMethodDescriptionprotected void
BaseTaskService.afterCreate
(T task, ModifyTaskDto<S> dto) Called after the task is stored in the database.protected void
BaseTaskService.afterUpdate
(T task, ModifyTaskDto<S> dto) Called after the task is updated in the database.protected void
BaseTaskService.beforeCreate
(T task, ModifyTaskDto<S> dto) Called before the task is stored in the database.BaseTaskService.create
(long id, @Valid ModifyTaskDto<S> dto) Creates a new task.TaskService.create
(long id, @Valid ModifyTaskDto<S> dto) Creates a new task.protected abstract T
BaseTaskService.createTask
(long id, ModifyTaskDto<S> dto) Creates a new task.BaseTaskService.update
(long id, @Valid ModifyTaskDto<S> dto) Updates an existing task.TaskService.update
(long id, @Valid ModifyTaskDto<S> dto) Updates an existing task.protected abstract void
BaseTaskService.updateTask
(T task, ModifyTaskDto<S> dto) Sets the task type specific attributes of the task.