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.oakhole.auth.dao.PermDao.java

/**
 * @author Oakhole
 * @since 1.0
 */
public interface PermDao extends PagingAndSortingRepository<Perm, Long>, JpaSpecificationExecutor<Perm> {

From source file com.oakhole.auth.dao.RoleDao.java

/**
 * @author Oakhole
 * @since 1.0
 */
public interface RoleDao extends PagingAndSortingRepository<Role, Long>, JpaSpecificationExecutor<Role> {

From source file br.com.joaops.smt.repository.SystemUserRepository.java

/**
 *
 * @author Joo
 */
public interface SystemUserRepository extends PagingAndSortingRepository<SystemUser, Long> {

From source file com.bia.monitor.dao.JobRepository.java

/**
 *
 * @author mdshannan
 */
@Repository
public interface JobRepository extends PagingAndSortingRepository<Job, String> {

From source file com.expedia.seiso.domain.repo.GroupRepo.java

/**
 * @author Willie Wheeler
 */
public interface GroupRepo extends PagingAndSortingRepository<Group, Long> {

    Group findByName(@Param("name") String name);

From source file com.oakhole.auth.dao.GroupDao.java

/**
 * @author Oakhole
 * @since 1.0
 */
public interface GroupDao extends PagingAndSortingRepository<Group, Long>, JpaSpecificationExecutor<Group> {

From source file com.oakhole.sms.dao.SmsTaskDao.java

/**
 * @author Oakhole
 * @since 1.0
 */
public interface SmsTaskDao extends PagingAndSortingRepository<SmsTask, Long>, JpaSpecificationExecutor<SmsTask> {

From source file com.ai.bss.query.user.repositories.UserQueryRepository.java

/**
 * @author Jettro Coenradie
 */
public interface UserQueryRepository extends PagingAndSortingRepository<UserEntry, String> {
    //MongoRepository
    UserEntry findByUsername(String username);

From source file com.oakhole.auth.dao.UserDao.java

/**
 * @author Oakhole
 * @since 1.0
 */
public interface UserDao extends PagingAndSortingRepository<User, Long>, JpaSpecificationExecutor<User> {

From source file ltistarter.repository.LtiContextRepository.java

/**
 * NOTE: use of this interface magic makes all subclass-based (CGLIB) proxies fail
 */
@Transactional
public interface LtiContextRepository extends PagingAndSortingRepository<LtiContextEntity, Long> {
    /* Add custom crud methods here