Interface RootedControlRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<RootedControl,String>, org.springframework.data.jpa.repository.JpaRepository<RootedControl,String>, org.springframework.data.repository.PagingAndSortingRepository<RootedControl,String>, org.springframework.data.repository.query.QueryByExampleExecutor<RootedControl>, org.springframework.data.repository.Repository<RootedControl,String>

public interface RootedControlRepository extends org.springframework.data.jpa.repository.JpaRepository<RootedControl,String>
Repository queries for rooted control.
  • Method Summary

    Modifier and Type
    Method
    Description
    Query for find all rooted control ids.

    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, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush

    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

    • findAllIds

      @Query("select rc.id from RootedControl rc order by rc.id") List<String> findAllIds()
      Query for find all rooted control ids.
      Returns:
      List with rooted controls ids.