datasurvey/src/main/java/org/datasurvey/repository/AuthorityRepository.java

10 lines
292 B
Java

package org.datasurvey.repository;
import org.datasurvey.domain.Authority;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* Spring Data JPA repository for the {@link Authority} entity.
*/
public interface AuthorityRepository extends JpaRepository<Authority, String> {}