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 com.artivisi.server.test.dao.PenjualanDao.java

/**
 *
 * @author ivans
 */
@Repository
public interface PenjualanDao extends PagingAndSortingRepository<Penjualan, String> {

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

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

From source file com.ctb.repository.UserDao.java

public interface UserDao extends PagingAndSortingRepository<User, Long> {
    User findByLoginName(String loginName);
}

From source file com.ferdinan.belajar.web.model.service.RoleService.java

/**
 *
 * @author ferdinan
 */
@Repository
public interface RoleService extends PagingAndSortingRepository<Role, String> {

From source file com.ctb.repository.RoleDao.java

public interface RoleDao extends PagingAndSortingRepository<Role, Long> {

}

From source file com.ctb.repository.AppDao.java

public interface AppDao extends PagingAndSortingRepository<App, Long> {

    App findByAppKey(String appKey);
}

From source file com.tiger.repository.UserDao.java

public interface UserDao extends PagingAndSortingRepository<User, Long> {
    User findByLoginName(String loginName);
}

From source file pl.ething.repository.EthingFeatureRepository.java

/**
 *
 * @author Koksik
 */
@RepositoryRestResource(collectionResourceRel = "feature", path = "feature", exported = false)
public interface EthingFeatureRepository extends PagingAndSortingRepository<EthingFeature, Long> {

From source file cn.cdwx.jpa.dao.UserDao.java

public interface UserDao extends PagingAndSortingRepository<User, String> {

    User findByLoginName(String loginName);
}

From source file com.orange.clara.cloud.servicedbdumper.repo.DatabaseDumpFileRepo.java

/**
 * Copyright (C) 2015 Orange
 * <p>
 * This software is distributed under the terms and conditions of the 'Apache-2.0'
 * license which can be found in the file 'LICENSE' in this package distribution
 * or at 'https://opensource.org/licenses/Apache-2.0'.