Uses of Interface
com.ibm.fhir.persistence.jdbc.dao.api.ResourceDAO
-
-
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc
Methods in com.ibm.fhir.persistence.jdbc that return ResourceDAO Modifier and Type Method Description static ResourceDAO
FHIRResourceDAOFactory. getResourceDAO(Connection connection, String adminSchemaName, String schemaName, FHIRDbFlavor flavor, FHIRPersistenceJDBCCache cache)
Construct a new ResourceDAO implementation matching the database typestatic ResourceDAO
FHIRResourceDAOFactory. getResourceDAO(Connection connection, String adminSchemaName, String schemaName, FHIRDbFlavor flavor, TransactionSynchronizationRegistry trxSynchRegistry, FHIRPersistenceJDBCCache cache, ParameterTransactionDataImpl ptdi)
Construct a new ResourceDAO implementation matching the database type -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.cache
Methods in com.ibm.fhir.persistence.jdbc.cache with parameters of type ResourceDAO Modifier and Type Method Description static void
FHIRPersistenceJDBCCacheUtil. prefill(ResourceDAO resourceDAO, ParameterDAO parameterDAO, FHIRPersistenceJDBCCache cache)
Prefill the cache with constants already committed in the database -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.dao
Classes in com.ibm.fhir.persistence.jdbc.dao that implement ResourceDAO Modifier and Type Class Description class
EraseResourceDAO
EraseDAO is the data access layer of the erase operation which executes directly against the database using SQL statements to: check the resource exists delete all versions from the resource table delete all parameters delete entries from global table delete resource specific logical resource entryclass
ReindexResourceDAO
DAO used to contain the logic required to reindex a given resource -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.dao.impl
Classes in com.ibm.fhir.persistence.jdbc.dao.impl that implement ResourceDAO Modifier and Type Class Description class
ResourceDAOImpl
This Data Access Object implements the ResourceDAO interface for creating, updating, and retrieving rows in the IBM FHIR Server resource tables.Constructors in com.ibm.fhir.persistence.jdbc.dao.impl with parameters of type ResourceDAO Constructor Description JDBCIdentityCacheImpl(FHIRPersistenceJDBCCache cache, ResourceDAO resourceDAO, ParameterDAO parameterDAO, IResourceReferenceDAO rrd)
Public constructor -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.derby
Classes in com.ibm.fhir.persistence.jdbc.derby that implement ResourceDAO Modifier and Type Class Description class
DerbyResourceDAO
Data access object for writing FHIR resources to an Apache Derby database. -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.impl
Methods in com.ibm.fhir.persistence.jdbc.impl with parameters of type ResourceDAO Modifier and Type Method Description protected List<Resource>
FHIRPersistenceJDBCImpl. buildSortedResourceDTOList(ResourceDAO resourceDao, Class<? extends Resource> resourceType, List<Long> sortedIdList)
This method takes the passed list of sorted Resource ids, acquires the ResourceDTO corresponding to each id, and returns those ResourceDTOs in a List, sorted according to the input sorted ids.protected List<Resource>
FHIRPersistenceJDBCImpl. convertResourceDTOList(ResourceDAO resourceDao, List<Resource> resourceDTOList, Class<? extends Resource> resourceType, List<String> elements)
Converts the passed Resource Data Transfer Object collection to a collection of FHIR Resource objects. -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.postgres
Classes in com.ibm.fhir.persistence.jdbc.postgres that implement ResourceDAO Modifier and Type Class Description class
PostgresReindexResourceDAO
PostgreSQL specialization of the DAO used to assist the reindex custom operationclass
PostgresResourceDAO
Data access object for writing FHIR resources to an postgresql database using the stored procedure (or function, in this case)class
PostgresResourceNoProcDAO
Data access object for writing FHIR resources to a PostgreSQL database. -
Uses of ResourceDAO in com.ibm.fhir.persistence.jdbc.util
Methods in com.ibm.fhir.persistence.jdbc.util with parameters of type ResourceDAO Modifier and Type Method Description static String
ResourceTypesCache. reportCacheDiscrepancies(ResourceDAO dao)
Deprecated.Determines and reports any discrepancies between the current thread's Resource Type cache and the contents of the database RESOURCE_TYPES table.
-