Interface UserActionRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<UserAction,Integer>, CustomActionRepository, org.springframework.data.jpa.repository.JpaRepository<UserAction,Integer>, org.springframework.data.repository.ListCrudRepository<UserAction,Integer>, org.springframework.data.repository.ListPagingAndSortingRepository<UserAction,Integer>, org.springframework.data.repository.PagingAndSortingRepository<UserAction,Integer>, org.springframework.data.repository.query.QueryByExampleExecutor<UserAction>, org.springframework.data.repository.Repository<UserAction,Integer>

@Repository public interface UserActionRepository extends org.springframework.data.jpa.repository.JpaRepository<UserAction,Integer>, CustomActionRepository
  • Method Summary

    Modifier and Type
    Method
    Description
    findAllByOnTableAndActionTypeAndPrimaryKey(String table, String actionType, String primaryKey, org.springframework.data.domain.PageRequest pageRequest)
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface tech.ailef.dbadmin.internal.repository.CustomActionRepository

    countActions, findActions

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findAllByOnTableAndActionTypeAndPrimaryKey

      List<UserAction> findAllByOnTableAndActionTypeAndPrimaryKey(String table, String actionType, String primaryKey, org.springframework.data.domain.PageRequest pageRequest)