java.lang.Object
fr.univtours.examplanner.repositories.ManagerRepo
All Implemented Interfaces:
BaseRepo<fr.univtours.examplanner.entities.dtos.ManagerDTO, String>

public class ManagerRepo extends Object implements BaseRepo<fr.univtours.examplanner.entities.dtos.ManagerDTO,String>
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    delete (@NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO entity)
    Permet de supprimer une entité
    @NotNull List<fr.univtours.examplanner.entities.dtos.ManagerDTO>
    Permet d'obtenir toutes les informations sur une table
    @NotNull List<fr.univtours.examplanner.entities.dtos.ManagerDTO>
    getAllFromExam (@NotNull Exam e)
    Récupère tous les examens
    @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO
    getById (@NotNull String id)
    Permet d'obtenir une entité grâce à son identifiant
    @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO
    save (@NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO entity)
    Permet de sauvegarder une entité mise en paramètre

    Methods inherited from class java.lang.Object

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

    • ManagerRepo

      public ManagerRepo()
  • Method Details

    • getAllFromExam

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.ManagerDTO> getAllFromExam (@NotNull @NotNull Exam e)
      Récupère tous les examens
      Parameters:
      e - un examen
      Returns:
      la liste des managers correspondants à l'examen
    • save

      @NotNull public @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO save (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO entity)
      Description copied from interface: BaseRepo
      Permet de sauvegarder une entité mise en paramètre
      Specified by:
      save in interface BaseRepo<fr.univtours.examplanner.entities.dtos.ManagerDTO, String>
      Parameters:
      entity - l'entité à sauvegarder
      Returns:
      l'entité sauvegardée
    • getAll

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.ManagerDTO> getAll()
      Description copied from interface: BaseRepo
      Permet d'obtenir toutes les informations sur une table
      Specified by:
      getAll in interface BaseRepo<fr.univtours.examplanner.entities.dtos.ManagerDTO, String>
      Returns:
      une liste d'entité de toutes les informations
    • getById

      @NotNull public @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO getById (@NotNull @NotNull String id)
      Description copied from interface: BaseRepo
      Permet d'obtenir une entité grâce à son identifiant
      Specified by:
      getById in interface BaseRepo<fr.univtours.examplanner.entities.dtos.ManagerDTO, String>
      Parameters:
      id - l'identifiant
      Returns:
      l'entité qui correspond à l'identifiant
    • delete

      public boolean delete (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO entity)
      Description copied from interface: BaseRepo
      Permet de supprimer une entité
      Specified by:
      delete in interface BaseRepo<fr.univtours.examplanner.entities.dtos.ManagerDTO, String>
      Parameters:
      entity - l'entité à supprimer
      Returns:
      vraie si l'entité à bien été supprimé