Example usage for org.springframework.data.jpa.repository JpaRepository interface-usage

List of usage examples for org.springframework.data.jpa.repository JpaRepository interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.jpa.repository JpaRepository interface-usage.

Usage

From source file com.tonata.photostudio2.repository.CustomerRepository.java

/**
 *
 * @author Tonata
 */
public interface CustomerRepository extends JpaRepository<Customer, Long> {

From source file com.sentinel.persistence.repository.UserRepository.java

/**
 * @author Vipin Kumar
 * @created 28-Jan-2016
 * 
 *          TODO: Write a quick description of what the class is supposed to do.
 * 

From source file com.tonata.photostudio2.repository.DesktopPCRepository.java

/**
 *
 * @author Tonata
 */
public interface DesktopPCRepository extends JpaRepository<DesktopPC, Long> {

From source file za.co.dwarfsun.jcmanager.repository.AuditTrailRepository.java

/**
 *
 * @author Matt
 */
public interface AuditTrailRepository extends JpaRepository<AuditTrail, Long> {

From source file business.models.FileRepository.java

public interface FileRepository extends JpaRepository<File, Long> {

    List<File> findByType(AttachmentType type);
}

From source file com.github.bysrhq.todoapp.repository.ToDoRepository.java

/**
 *
 * @author bysrhq
 */
public interface ToDoRepository extends JpaRepository<ToDoTitle, String> {

From source file com.mycompany.carshop.repository.AutomobileTypeRepository.java

/**
 *
 * @author Mhumhu
 */
public interface AutomobileTypeRepository extends JpaRepository<AutomobileType, Long> {

From source file com.nyaba.dvdrentalsystem.repository.PersonRepository.java

/**
 *
 * @author hashcode
 */
public interface PersonRepository extends JpaRepository<Person, Long> {

From source file com.startup.musicstore.respository.AlbumCategoryRepository.java

/**
 *
 * @author hashcode
 */
public interface AlbumCategoryRepository extends JpaRepository<AlbumCategory, Long> {
}

From source file com.tonata.photostudio2.repository.PhotographRepository.java

/**
 *
 * @author Tonata
 */
public interface PhotographRepository extends JpaRepository<Photograph, Long> {