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

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

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    delete (@NotNull fr.univtours.examplanner.entities.dtos.SlotDTO entity)
    Permet de supprimer une entité
    @NotNull List<fr.univtours.examplanner.entities.dtos.SlotDTO>
    Permet d'obtenir toutes les informations sur une table
    @NotNull List<fr.univtours.examplanner.entities.dtos.SlotDTO>
    getAllFromManager (@NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO manager)
    Récupère tous les créneaux parmi un manager
    @NotNull List<fr.univtours.examplanner.entities.dtos.SlotDTO>
    getAllFromRoom (@NotNull fr.univtours.examplanner.entities.dtos.RoomDTO room)
    Récupère tous les créneaux parmi une salle
    @NotNull fr.univtours.examplanner.entities.dtos.SlotDTO
    getById (@NotNull String id)
    Permet d'obtenir une entité grâce à son identifiant
    @NotNull fr.univtours.examplanner.entities.dtos.SlotDTO
    save (@NotNull fr.univtours.examplanner.entities.dtos.SlotDTO 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

    • SlotRepo

      public SlotRepo()
  • Method Details

    • getAllFromRoom

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.SlotDTO> getAllFromRoom (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.RoomDTO room)
      Récupère tous les créneaux parmi une salle
      Parameters:
      room - une salle
      Returns:
      la liste des créneaux correspondants
    • getAllFromManager

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.SlotDTO> getAllFromManager (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.ManagerDTO manager)
      Récupère tous les créneaux parmi un manager
      Parameters:
      manager - un manager
      Returns:
      la liste des créneaux correspondants
    • save

      @NotNull public @NotNull fr.univtours.examplanner.entities.dtos.SlotDTO save (@NotNull @NotNull fr.univtours.examplanner.entities.dtos.SlotDTO 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.SlotDTO, String>
      Parameters:
      entity - l'entité à sauvegarder
      Returns:
      l'entité sauvegardée
    • getAll

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.SlotDTO> 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.SlotDTO, String>
      Returns:
      une liste d'entité de toutes les informations
    • getById

      @NotNull public @NotNull fr.univtours.examplanner.entities.dtos.SlotDTO 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.SlotDTO, String>
      Parameters:
      id - l'identifiant
      Returns:
      l'entité qui correspond à l'identifiant
    • delete

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