Interface SystemRepository

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

@Repository public interface SystemRepository extends org.springframework.data.jpa.repository.JpaRepository<System,UUID>
  • 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

    • findByNameContainingIgnoreCase

      Optional<System> findByNameContainingIgnoreCase(String name)
    • findByNameIgnoreCase

      Optional<System> findByNameIgnoreCase(String name)
    • findByAliasIgnoreCase

      @Query("SELECT s FROM System s JOIN s.aliases a WHERE LOWER(a) = LOWER(:name)") Optional<System> findByAliasIgnoreCase(@Param("name") String name)
    • findByNameOrAliasIgnoreCase

      default Optional<System> findByNameOrAliasIgnoreCase(String name)