Interface ApplicationDAO

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

@Component public interface ApplicationDAO extends org.springframework.data.jpa.repository.JpaRepository<ApplicationEntity,Long>
  • Method Summary

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

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

    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

    • getMandatoryActiveApps

      @Query("SELECT app FROM ApplicationEntity app\nWHERE app.active = TRUE\nAND app.isMandatory = TRUE\n") List<ApplicationEntity> getMandatoryActiveApps()
    • getApplications

      @Query("SELECT app FROM ApplicationEntity app\nORDER BY LOWER(app.title)\n") List<ApplicationEntity> getApplications()
    • getApplications

      @Query("SELECT app FROM ApplicationEntity app\nWHERE LOWER(app.title) LIKE ?1\nOR LOWER(app.description) like ?1\nOR LOWER(app.url) LIKE ?1\nORDER BY LOWER(app.title)\n") List<ApplicationEntity> getApplications(String keyword)
    • getSystemApplications

      @Query("SELECT app FROM ApplicationEntity app\nWHERE app.system = TRUE\n") List<ApplicationEntity> getSystemApplications()
    • getApplicationByTitle

      @Query("SELECT app FROM ApplicationEntity app\nWHERE app.title = ?1\n") ApplicationEntity getApplicationByTitle(String title)