Class GroupController

java.lang.Object
fr.univtours.examplanner.controllers.GroupController
All Implemented Interfaces:
BaseController<fr.univtours.examplanner.entities.dtos.GroupDTO>

public class GroupController extends Object implements BaseController<fr.univtours.examplanner.entities.dtos.GroupDTO>
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull fr.univtours.examplanner.entities.dtos.GroupDTO
    create (@NotNull String name, int size, @NotNull List<Integer> subGroupIds)
    Crée un groupe
    void
    delete (@NotNull fr.univtours.examplanner.entities.dtos.GroupDTO entity)
    Supprime un groupe
    @NotNull List<fr.univtours.examplanner.entities.dtos.GroupDTO>
    Liste les groupes
    void
    save (@NotNull fr.univtours.examplanner.entities.dtos.GroupDTO entity)
    Modifie un groupe

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • GroupController

      public GroupController()
  • Method Details

    • getAll

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.GroupDTO> getAll()
      Liste les groupes
      Specified by:
      getAll in interface BaseController<fr.univtours.examplanner.entities.dtos.GroupDTO>
      Returns:
      la liste des groupes
    • create

      @NotNull public @NotNull fr.univtours.examplanner.entities.dtos.GroupDTO create (@NotNull @NotNull String name, int size, @NotNull @NotNull List<Integer> subGroupIds)
      Crée un groupe
      Parameters:
      name - le nom du groupe
      size - la taille du groupe
      subGroupIds - la liste des identifiants des sous-groupes
      Returns:
      le groupe créé
    • save

      public void save (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.GroupDTO entity) throws ControllerException
      Modifie un groupe
      Specified by:
      save in interface BaseController<fr.univtours.examplanner.entities.dtos.GroupDTO>
      Parameters:
      entity - le groupe à modifier
      Throws:
      ControllerException
    • delete

      public void delete (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.GroupDTO entity) throws ControllerException
      Supprime un groupe
      Specified by:
      delete in interface BaseController<fr.univtours.examplanner.entities.dtos.GroupDTO>
      Parameters:
      entity - le groupe à supprimer
      Throws:
      ControllerException