Package ca.uhn.fhir.jpa.dao.data
Interface IPartitionDao
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<PartitionEntity,
,Integer> IHapiFhirJpaRepository
,org.springframework.data.jpa.repository.JpaRepository<PartitionEntity,
,Integer> org.springframework.data.repository.ListCrudRepository<PartitionEntity,
,Integer> org.springframework.data.repository.ListPagingAndSortingRepository<PartitionEntity,
,Integer> org.springframework.data.repository.PagingAndSortingRepository<PartitionEntity,
,Integer> org.springframework.data.repository.query.QueryByExampleExecutor<PartitionEntity>
,org.springframework.data.repository.Repository<PartitionEntity,
Integer>
public interface IPartitionDao
extends org.springframework.data.jpa.repository.JpaRepository<PartitionEntity,Integer>, IHapiFhirJpaRepository
-
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
-
findForName
@Query("SELECT p FROM PartitionEntity p WHERE p.myName = :name") Optional<PartitionEntity> findForName(@Param("name") String theName)
-