Example usage for org.springframework.data.repository PagingAndSortingRepository interface-usage

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

Introduction

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

Usage

From source file net.sf.sze.dao.api.zeugnisconfig.SchulamtDao.java

/**
 * DAO frs {@link Schulamt}.
 *
 */
public interface SchulamtDao extends PagingAndSortingRepository<Schulamt, Long> {

From source file edu.infsci2560.repositories.DvdRepository.java

/**
 *
 * @author kolobj
 */
public interface DvdRepository extends PagingAndSortingRepository<Dvd, Long> {
}

From source file com.salatigacode.dao.ProductDao.java

/**
 *
 * @author hendro.tampake
 */
public interface ProductDao extends PagingAndSortingRepository<Product, String> {

From source file edu.infsci2560.repositories.BlogRepository.java

/**
 *
 * @author Wenwen Sun
 */
public interface BlogRepository extends PagingAndSortingRepository<Blog, Long> {
}

From source file edu.infsci2560.repositories.BookRepository.java

/**
 *
 * @author kolobj
 */
public interface BookRepository extends PagingAndSortingRepository<Book, Long> {
}

From source file net.sf.sze.dao.api.zeugnisconfig.SchulfachDao.java

/**
 * DAO frs {@link Schulfach}.
 *
 */
public interface SchulfachDao extends PagingAndSortingRepository<Schulfach, Long> {
    /**

From source file pitayaa.nail.msg.core.account.repository.AccountLicenseRepository.java

@Service
@RepositoryRestResource(collectionResourceRel = "accountsLicenseRest", path = "accountsLicenseRest")
public interface AccountLicenseRepository extends PagingAndSortingRepository<AccountLicense, UUID> {

}

From source file com.recursivechaos.clearent.repository.SaleRepository.java

public interface SaleRepository extends PagingAndSortingRepository<Sale, Integer> {

}

From source file blankd.acme.pet.licensing.repo.PetRepository.java

public interface PetRepository extends PagingAndSortingRepository<Pet, Long> {
    public Page<Pet> findByName(String name, Pageable p);

    public Page<Pet> findBySpecies(String species, Pageable p);

    public Pet findById(Long id);

From source file net.sf.sze.dao.api.zeugnisconfig.ZeugnisArtDao.java

/**
 * DAO frs {@link ZeugnisArt}.
 *
 */
public interface ZeugnisArtDao extends PagingAndSortingRepository<ZeugnisArt, Long> {