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

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

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    delete (@NotNull fr.univtours.examplanner.entities.dtos.RoomDTO entity)
    Permet de supprimer une entité
    @NotNull List<fr.univtours.examplanner.entities.dtos.RoomDTO>
    Permet d'obtenir toutes les informations sur une table
    @NotNull List<fr.univtours.examplanner.entities.dtos.RoomDTO>
    getAllWithConstraint (@NotNull RoomType constraint)
    Récupère les salles qui ont le type en paramètre
    @NotNull List<fr.univtours.examplanner.entities.dtos.RoomDTO>
    getAllWithConstraints (@NotNull List<RoomType> constraints)
    Récupère les salles qui ont les contraintes en paramètre
    @NotNull fr.univtours.examplanner.entities.dtos.RoomDTO
    getById (@NotNull String id)
    Permet d'obtenir une entité grâce à son identifiant
    @NotNull fr.univtours.examplanner.entities.dtos.RoomDTO
    save (@NotNull fr.univtours.examplanner.entities.dtos.RoomDTO 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

    • RoomRepo

      public RoomRepo()
  • Method Details

    • getAllWithConstraint

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.RoomDTO> getAllWithConstraint (@NotNull @NotNull RoomType constraint)
      Récupère les salles qui ont le type en paramètre
      Parameters:
      constraint - une contrainte de salle
      Returns:
      la liste des salles correspondante a la contrainte
    • getAllWithConstraints

      @NotNull public @NotNull List<fr.univtours.examplanner.entities.dtos.RoomDTO> getAllWithConstraints (@NotNull @NotNull List<RoomType> constraints)
      Récupère les salles qui ont les contraintes en paramètre
      Parameters:
      constraints - une liste de contraintes
      Returns:
      la liste de salles correspondantes aux contraintes
    • save

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

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

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

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