Blame view

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