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

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

Introduction

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

Usage

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

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

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

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

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

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

From source file com.oakhole.advice.dao.AdviceDao.java

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

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

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

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

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