Uses of Record Class
at.jku.dke.etutor.task_app.dto.TaskGroupModificationResponseDto
Packages that use TaskGroupModificationResponseDto
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 TaskGroupModificationResponseDto in at.jku.dke.etutor.task_app.controllers
Methods in at.jku.dke.etutor.task_app.controllers that return types with arguments of type TaskGroupModificationResponseDtoModifier 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 TaskGroupModificationResponseDto in at.jku.dke.etutor.task_app.services
Methods in at.jku.dke.etutor.task_app.services that return TaskGroupModificationResponseDtoModifier and TypeMethodDescriptionBaseTaskGroupService.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 TaskGroupModificationResponseDto
BaseTaskGroupService.mapToReturnData
(G taskGroup, boolean create) Maps the task group to the data that should be returned to the task administration UI.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.