Class BaseTaskController<E extends Task,D,A>

java.lang.Object
at.jku.dke.etutor.task_app.controllers.BaseTaskControllerWithoutRequestMapping<E,D,A>
at.jku.dke.etutor.task_app.controllers.BaseTaskController<E,D,A>
Type Parameters:
E - The type of the task entity.
D - The type of the task DTO.
A - The type of the additional data in ModifyTaskDto.
All Implemented Interfaces:
TaskController<D,A>

@RequestMapping("/api/task") public abstract class BaseTaskController<E extends Task,D,A> extends BaseTaskControllerWithoutRequestMapping<E,D,A>
Base implementation of TaskController with predefined request mapping base.

Add @RestController to the extending class.