Class DepartmentRepo

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

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

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    delete (@NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO entity)
    Permet de supprimer une entité
    @NotNull List<fr.univtours.examplanner.entities.dtos.DepartmentDTO>
    Permet d'obtenir toutes les informations sur une table
    @NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO
    getById (@NotNull String id)
    Permet d'obtenir une entité grâce à son identifiant
    @NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO
    save (@NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO 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

    • DepartmentRepo

      public DepartmentRepo()
  • Method Details

    • save

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

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

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

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