Blame view

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