Blame view

src/main/java/etunicorn/PermissionRepository.java 304 Bytes
dcfbf6e6   Geoffrey PREUD'HOMME   Revert "Recopie d...
1
2
  package etunicorn;
  
8f05ee77   Geoffrey PREUD'HOMME   API /role et amél...
3
  import org.springframework.data.repository.CrudRepository;
dcfbf6e6   Geoffrey PREUD'HOMME   Revert "Recopie d...
4
5
  
  /**
3064f583   Geoffrey PREUD'HOMME   Copyright
6
7
8
   * etunicorn-server
   * Copyright © 2017 Le Club Info Polytech Lille
   * Tous droits réservés
dcfbf6e6   Geoffrey PREUD'HOMME   Revert "Recopie d...
9
   */
8f05ee77   Geoffrey PREUD'HOMME   API /role et amél...
10
11
  public interface PermissionRepository extends CrudRepository<Permission, Long> {
      Permission findByNom(String nom);
dcfbf6e6   Geoffrey PREUD'HOMME   Revert "Recopie d...
12
  }