Package io.meeds.appcenter.dao
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
Modifier and TypeMethodDescriptiongetApplicationByTitle(String title) getApplications(String keyword) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods 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)
-