Interface IForcedIdDao

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

@Deprecated(since="6.10") @Repository public interface IForcedIdDao extends org.springframework.data.jpa.repository.JpaRepository<ForcedId,Long>, IHapiFhirJpaRepository
Deprecated.
we now have a fhir_id column directly on HFJ_RESOURCE. No runtime code should query this table except for deletions by PK. To be deleted in 2024 (zero-downtime).
Legacy forced_id implementation.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deprecated.
     

    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

    • deleteByPid

      @Modifying @Query("DELETE FROM ForcedId t WHERE t.myId = :pid") void deleteByPid(@Param("pid") Long theId)
      Deprecated.