Uses of Record Class
at.jku.dke.etutor.task_app.dto.ModifyTaskGroupDto
Packages that use ModifyTaskGroupDto
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 ModifyTaskGroupDto in at.jku.dke.etutor.task_app.controllers
Methods in at.jku.dke.etutor.task_app.controllers with parameters of type ModifyTaskGroupDtoModifier and TypeMethodDescriptionBaseTaskGroupControllerWithoutRequestMapping.create
(long id, ModifyTaskGroupDto<A> dto) Creates a new task group.TaskGroupController.create
(long id, ModifyTaskGroupDto<T> dto) Creates a new task group.BaseTaskGroupControllerWithoutRequestMapping.update
(long id, ModifyTaskGroupDto<A> dto) Updates the task group data.TaskGroupController.update
(long id, ModifyTaskGroupDto<T> dto) Updates the task group data. -
Uses of ModifyTaskGroupDto in at.jku.dke.etutor.task_app.services
Methods in at.jku.dke.etutor.task_app.services with parameters of type ModifyTaskGroupDtoModifier and TypeMethodDescriptionprotected void
BaseTaskGroupService.afterCreate
(G taskGroup, ModifyTaskGroupDto<S> dto) Called after the task group is stored in the database.protected void
BaseTaskGroupService.afterUpdate
(G taskGroup, ModifyTaskGroupDto<S> dto) Called after the task group is updated in the database.protected void
BaseTaskGroupService.beforeCreate
(G taskGroup, ModifyTaskGroupDto<S> dto) Called before the task group is stored in the database.BaseTaskGroupService.create
(long id, @Valid ModifyTaskGroupDto<S> dto) Creates a new task group.TaskGroupService.create
(long id, @Valid ModifyTaskGroupDto<S> dto) Creates a new task group.protected abstract G
BaseTaskGroupService.createTaskGroup
(long id, ModifyTaskGroupDto<S> dto) Creates a new task group.BaseTaskGroupService.update
(long id, @Valid ModifyTaskGroupDto<S> dto) Updates an existing task group.TaskGroupService.update
(long id, @Valid ModifyTaskGroupDto<S> dto) Updates an existing task group.protected abstract void
BaseTaskGroupService.updateTaskGroup
(G taskGroup, ModifyTaskGroupDto<S> dto) Sets the task group type specific attributes of the task group.