
Package ca.uhn.fhir.jpa.dao.data
Interface IResourceIndexedSearchParamIdentityDao
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<IndexedSearchParamIdentity,,Integer> IHapiFhirJpaRepository,org.springframework.data.jpa.repository.JpaRepository<IndexedSearchParamIdentity,,Integer> org.springframework.data.repository.ListCrudRepository<IndexedSearchParamIdentity,,Integer> org.springframework.data.repository.ListPagingAndSortingRepository<IndexedSearchParamIdentity,,Integer> org.springframework.data.repository.PagingAndSortingRepository<IndexedSearchParamIdentity,,Integer> org.springframework.data.repository.query.QueryByExampleExecutor<IndexedSearchParamIdentity>,org.springframework.data.repository.Repository<IndexedSearchParamIdentity,Integer>
public interface IResourceIndexedSearchParamIdentityDao
extends org.springframework.data.jpa.repository.JpaRepository<IndexedSearchParamIdentity,Integer>, IHapiFhirJpaRepository
-
Method Summary
Modifier and TypeMethodDescriptionCollection<Object[]> getSearchParameterIdByHashIdentity(long theHashIdentity) 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
-
getAllHashIdentities
@Query("select i.myHashIdentity, i.mySpIdentityId from IndexedSearchParamIdentity i") Collection<Object[]> getAllHashIdentities() -
getSearchParameterIdByHashIdentity
@Query("select i from IndexedSearchParamIdentity i where i.myHashIdentity = :hash_identity") IndexedSearchParamIdentity getSearchParameterIdByHashIdentity(@Param("hash_identity") long theHashIdentity)
-