Uses of Class
com.ibm.fhir.persistence.exception.FHIRPersistenceException
-
-
Uses of FHIRPersistenceException in com.ibm.fhir.persistence
Methods in com.ibm.fhir.persistence that throw FHIRPersistenceException Modifier and Type Method Description voidFHIRPersistenceTransaction. begin()Begin a new transaction on the current thread if a transaction is not started yet.List<ResourceChangeLogRecord>FHIRPersistence. changes(int resourceCount, Instant fromLastModified, Long afterResourceId, String resourceTypeName)Fetch up to resourceCount records from the RESOURCE_CHANGE_LOG table<T extends Resource>
SingleResourceResult<T>FHIRPersistence. create(FHIRPersistenceContext context, T resource)Stores a new FHIR Resource in the datastore.default <T extends Resource>
SingleResourceResult<T>FHIRPersistence. delete(FHIRPersistenceContext context, Class<T> resourceType, String logicalId)Deletes the specified FHIR Resource from the datastore.voidFHIRPersistenceTransaction. end()End the current thread's transaction.ResourcePayloadFHIRPersistence. fetchResourcePayloads(Class<? extends Resource> resourceType, Instant fromLastModified, Instant toLastModified, Function<ResourcePayload,Boolean> process)Special function for high speed export of resource payloads.OperationOutcomeFHIRPersistence. getHealth()Returns an OperationOutcome indicating the current status of the persistence store / backendFHIRPersistenceFHIRPersistenceFactory. getInstance()Returns an instance of a concrete implementation of the FHIRPersistence interface.FHIRPersistencePropertyBasedFHIRPersistenceFactory. getInstance(Properties properties)<T extends Resource>
MultiResourceResult<T>FHIRPersistence. history(FHIRPersistenceContext context, Class<T> resourceType, String logicalId)Retrieves all of the versions of the specified FHIR Resource.<T extends Resource>
SingleResourceResult<T>FHIRPersistence. read(FHIRPersistenceContext context, Class<T> resourceType, String logicalId)Retrieves the most recent version of a FHIR Resource from the datastore.intFHIRPersistence. reindex(FHIRPersistenceContext context, OperationOutcome.Builder operationOutcomeResult, Instant tstamp, String resourceLogicalId)Initiates reindexing for resources not yet processed.MultiResourceResult<Resource>FHIRPersistence. search(FHIRPersistenceContext context, Class<? extends Resource> resourceType)Performs a search on the specified target resource type using the specified search parameters.voidFHIRPersistenceTransaction. setRollbackOnly()Modify the transaction associated with the current thread such that the only possible outcome of the transaction is to roll back the transaction.<T extends Resource>
SingleResourceResult<T>FHIRPersistence. update(FHIRPersistenceContext context, String logicalId, T resource)Updates an existing FHIR Resource by storing a new version in the datastore.<T extends Resource>
SingleResourceResult<T>FHIRPersistence. vread(FHIRPersistenceContext context, Class<T> resourceType, String logicalId, String versionId)Retrieves a specific version of a FHIR Resource from the datastore. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.exception
Subclasses of FHIRPersistenceException in com.ibm.fhir.persistence.exception Modifier and Type Class Description classFHIRPersistenceNotSupportedExceptionThrown for methods or features not yet fully implemented.classFHIRPersistenceProcessorExceptionThrown when a failure is found processing search parameters.classFHIRPersistenceResourceDeletedExceptionclassFHIRPersistenceResourceNotFoundExceptionclassFHIRPersistenceVersionIdMismatchExceptionThis exception class represents an occurrence of a mismatch between the version id in the resource json vs.Methods in com.ibm.fhir.persistence.exception that return FHIRPersistenceException Modifier and Type Method Description FHIRPersistenceExceptionFHIRPersistenceException. withIssue(OperationOutcome.Issue... issues)FHIRPersistenceExceptionFHIRPersistenceException. withIssue(Collection<OperationOutcome.Issue> issues)FHIRPersistenceExceptionFHIRPersistenceProcessorException. withIssue(OperationOutcome.Issue... issues)FHIRPersistenceExceptionFHIRPersistenceProcessorException. withIssue(Collection<OperationOutcome.Issue> issues) -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.helper
Methods in com.ibm.fhir.persistence.helper that throw FHIRPersistenceException Modifier and Type Method Description voidFHIRTransactionHelper. begin()If a transaction has not yet been started on this thread, then start one.voidFHIRTransactionHelper. commit()If we previously started a transaction on this thread using this helper instance, then commit it now.voidFHIRTransactionHelper. end()Same as commit, but is preferred for readability becauseFHIRTransactionHelper.commit()will actually do a rollback if setRollbackOnly is called on the underlying transactionFHIRPersistenceFHIRPersistenceHelper. getFHIRPersistenceImplementation()FHIRPersistenceFHIRPersistenceHelper. getFHIRPersistenceImplementation(String factoryPropertyName)FHIRPersistencePersistenceHelper. getFHIRPersistenceImplementation()Returns an appropriate FHIRPersistance implementation according to the current configuration.FHIRPersistencePersistenceHelper. getFHIRPersistenceImplementation(String factoryPropertyName)Returns an appropriate FHIRPersistance implementation according to the current configuration.default booleanPersistenceHelper. isValidFHIRPersistenceImplementation(String identifier)Identifies if a FHIRPersistence implementation can be found by using the given identifier.protected StringFHIRPersistenceHelper. retrieveFactoryClassName(String factoryPropertyName)Retrieves the name of the factory class that should be instantiated for use by the server.voidFHIRTransactionHelper. rollback()If we previously started a transaction on this thread using this helper instance, then perform a rollback now; otherwise, set the transaction as 'rollback only' to prevent it from being committed later.voidFHIRTransactionHelper. setRollbackOnly()Mark the current transaction for rollback. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.interceptor
Subclasses of FHIRPersistenceException in com.ibm.fhir.persistence.interceptor Modifier and Type Class Description classFHIRPersistenceInterceptorException -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc
Methods in com.ibm.fhir.persistence.jdbc that throw FHIRPersistenceException Modifier and Type Method Description FHIRPersistenceFHIRPersistenceJDBCFactory. getInstance()static ResourceDAOFHIRResourceDAOFactory. getResourceDAO(Connection connection, String adminSchemaName, String schemaName, FHIRDbFlavor flavor, FHIRPersistenceJDBCCache cache)Construct a new ResourceDAO implementation matching the database typestatic ResourceDAOFHIRResourceDAOFactory. 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 FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.cache
Methods in com.ibm.fhir.persistence.jdbc.cache that throw FHIRPersistenceException Modifier and Type Method Description static voidFHIRPersistenceJDBCCacheUtil. prefill(ResourceDAO resourceDAO, ParameterDAO parameterDAO, FHIRPersistenceJDBCCache cache)Prefill the cache with constants already committed in the database -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.connection
Methods in com.ibm.fhir.persistence.jdbc.connection with type parameters of type FHIRPersistenceException Modifier and Type Method Description static <XT extends FHIRPersistenceException>
XTFHIRDbHelper. severe(Logger logger, XT fx, String errorMessage, Throwable cause)Log the exception message here along with the cause stack.static <XT extends FHIRPersistenceException>
XTFHIRDbHelper. severe(Logger logger, XT fx, Throwable cause)Convenience function to log the cause of an exception about to be thrown.Methods in com.ibm.fhir.persistence.jdbc.connection that throw FHIRPersistenceException Modifier and Type Method Description voidFHIRTestTransactionAdapter. begin()voidFHIRUserTransactionAdapter. begin()If a transaction has not yet been started on this thread, then start one.protected voidFHIRDbConnectionStrategyBase. configure(Connection connection, String tenantId, String dsId)Check with the transaction sync registry to see if this is the first time we've worked with this connection in the current transaction.voidFHIRTestTransactionAdapter. end()voidFHIRUserTransactionAdapter. end()If we previously started a transaction on this thread using this helper instance, then commit it now.(package private) <T> TFHIRUserTransactionAdapter. func(Supplier<T> s)Call the supplier function within a begin/endprotected ConnectionFHIRDbConnectionStrategyBase. getConnection(DataSource datasource, String tenantId, String dsId)Get a connection configured for the given tenant and datasourceIdprotected ConnectionFHIRDbProxyDatasourceConnectionStrategy. getConnection(DataSource datasource, String tenantId, String dsId)Deprecated.voidFHIRTestTransactionAdapter. setRollbackOnly()voidFHIRUserTransactionAdapter. setRollbackOnly() -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.dao.api
Methods in com.ibm.fhir.persistence.jdbc.dao.api that throw FHIRPersistenceException Modifier and Type Method Description intParameterDAO. acquireCodeSystemId(String codeSystemName)Acquire and return the id associated with the passed code-system name.intParameterDAO. acquireParameterNameId(String parameterName)Acquire and return the id associated with the passed parameter name.voidParameterDAO. addCodeSystemsCacheCandidate(String codeSystemName, Integer codeSystemId)Adds a code system name / code system id pair to a candidate collection for population into the CodeSystemsCache.voidParameterDAO. addParameterNamesCacheCandidate(String parameterName, Integer parameterId)Adds a parameter name / parameter id pair to a candidate collection for population into the ParameterNamesCache.voidResourceDAO. addResourceTypeCacheCandidate(String resourceType, Integer resourceTypeId)Adds a resource type / resource id pair to a candidate collection for population into the ResourceTypesCache.voidIResourceReferenceDAO. flush()Execute any statements with pending batch entriesIntegerJDBCIdentityCache. getCodeSystemId(String codeSystem)Get the database id for the named code-system.IntegerJDBCIdentityCache. getParameterNameId(String parameterName)Get the database id for the given parameter name.IntegerJDBCIdentityCache. getResourceTypeId(String resourceType)Get the database id for the named resourceType.ResourceResourceDAO. insert(Resource resource, List<ExtractedParameterValue> parameters, ParameterDAO parameterDao)Inserts the passed Resource DTO and its associated search parameters to the appropriate FHIR resource tables.intICodeSystemCache. readOrAddCodeSystem(String codeSystem)Reads the id associated with the name of the passed Parameter from the code_systems table.intIParameterNameCache. readOrAddParameterNameId(String parameterName)Reads the id associated with the name of the passed Parameter from the Parameter_Names table. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.dao.impl
Methods in com.ibm.fhir.persistence.jdbc.dao.impl with type parameters of type FHIRPersistenceException Modifier and Type Method Description protected <XT extends FHIRPersistenceException>
XTFHIRDbDAOImpl. severe(Logger logger, XT fx, String errorMessage, Throwable cause)Log the exception message here along with the cause stack.protected <XT extends FHIRPersistenceException>
XTFHIRDbDAOImpl. severe(Logger logger, XT fx, Throwable cause)Convenience function to log the cause of an exception about to be thrown.Methods in com.ibm.fhir.persistence.jdbc.dao.impl that throw FHIRPersistenceException Modifier and Type Method Description intParameterDAOImpl. acquireCodeSystemId(String codeSystemName)Acquire and return the id associated with the passed code-system name.intParameterDAOImpl. acquireParameterNameId(String parameterName)Acquire and return the id associated with the passed parameter name.voidParameterDAOImpl. addCodeSystemsCacheCandidate(String codeSystemName, Integer codeSystemId)Adds a code system name / code system id pair to a candidate collection for population into the CodeSystemsCache.voidParameterDAOImpl. addParameterNamesCacheCandidate(String parameterName, Integer parameterId)Adds a parameter name / parameter id pair to a candidate collection for population into the ParameterNamesCache.voidResourceDAOImpl. addResourceTypeCacheCandidate(String resourceType, Integer resourceTypeId)Adds a resource type/ resource id pair to a candidate collection for population into the ResourceTypesCache.voidResourceReferenceDAO. close()intFetchResourcePayloadsDAO. count(Connection c)Get a count of the resources matching the filter predicates...for debugging...slows things down a lotvoidResourceReferenceDAO. flush()IntegerJDBCIdentityCacheImpl. getCodeSystemId(String codeSystemName)protected intParameterVisitorBatchDAO. getCodeSystemId(String codeSystem)Looks up the code system.IntegerJDBCIdentityCacheImpl. getParameterNameId(String parameterName)protected intParameterVisitorBatchDAO. getParameterNameId(String parameterName)Look up the normalized id for the parameter, adding it to the parameter_names table if it doesn't yet existIntegerJDBCIdentityCacheImpl. getResourceTypeId(String resourceType)ResourceResourceDAOImpl. insert(Resource resource, List<ExtractedParameterValue> parameters, ParameterDAO parameterDao)voidFetchPayloadsForIdsDAO. run(Connection c)Fetch the payloads using the given connectionList<ResourceChangeLogRecord>FetchResourceChangesDAO. run(Connection c)Run the DAO command on the database connectionResourcePayloadFetchResourcePayloadsDAO. run(Connection c)Run the query, feeding each result row to the consumervoidParameterVisitorBatchDAO. visit(CompositeParmVal compositeParameter)voidParameterVisitorBatchDAO. visit(DateParmVal param)voidParameterVisitorBatchDAO. visit(LocationParmVal param)voidParameterVisitorBatchDAO. visit(NumberParmVal param)voidParameterVisitorBatchDAO. visit(QuantityParmVal param)voidParameterVisitorBatchDAO. visit(ReferenceParmVal rpv)voidParameterVisitorBatchDAO. visit(StringParmVal param)voidParameterVisitorBatchDAO. visit(TokenParmVal param) -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.derby
Methods in com.ibm.fhir.persistence.jdbc.derby that throw FHIRPersistenceException Modifier and Type Method Description ResourceDerbyResourceDAO. insert(Resource resource, List<ExtractedParameterValue> parameters, ParameterDAO parameterDao)Inserts the passed FHIR Resource and associated search parameters to a Derby or PostgreSql FHIR database. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.dto
Methods in com.ibm.fhir.persistence.jdbc.dto that throw FHIRPersistenceException Modifier and Type Method Description voidCompositeParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidDateParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidExtractedParameterValue. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidLocationParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidNumberParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidQuantityParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidReferenceParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidStringParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidTokenParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidUriParmVal. accept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorvoidExtractedParameterValueVisitor. visit(CompositeParmVal compositeParameter)Process a composite parameter valuevoidExtractedParameterValueVisitor. visit(DateParmVal dateParameter)Process a date parameter valuevoidExtractedParameterValueVisitor. visit(LocationParmVal locationParameter)Process a location parameter valuevoidExtractedParameterValueVisitor. visit(NumberParmVal numberParameter)Process a number parameter valuevoidExtractedParameterValueVisitor. visit(QuantityParmVal quantityParameter)Process a quantity parameter valuevoidExtractedParameterValueVisitor. visit(ReferenceParmVal referenceParmVal)Process a reference parameter valuevoidExtractedParameterValueVisitor. visit(StringParmVal stringParameter)Process a string parameter valuevoidExtractedParameterValueVisitor. visit(TokenParmVal tokenParameter)Process a token parameter value -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.exception
Subclasses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.exception Modifier and Type Class Description classFHIRPersistenceDataAccessExceptionThis exception class represents failures encountered while attempting to access (read, write) data in the FHIR DB.classFHIRPersistenceDBCleanupExceptionThis exception class represents failures encountered while attempting to close/cleanup JDBC resources.classFHIRPersistenceDBConnectExceptionThis exception class represents failures encountered while attempting to connect to a JDBC database or datasource.classFHIRPersistenceFKVExceptionThis exception class is thrown when Foreign Key violations are encountered while attempting to access data in the FHIR DB. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.impl
Methods in com.ibm.fhir.persistence.jdbc.impl that throw FHIRPersistenceException 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.List<ResourceChangeLogRecord>FHIRPersistenceJDBCImpl. changes(int resourceCount, Instant fromLastModified, Long afterResourceId, String resourceTypeName)<T extends Resource>
SingleResourceResult<T>FHIRPersistenceJDBCImpl. create(FHIRPersistenceContext context, T resource)<T extends Resource>
SingleResourceResult<T>FHIRPersistenceJDBCImpl. delete(FHIRPersistenceContext context, Class<T> resourceType, String logicalId)voidFHIRPersistenceJDBCImpl. doCachePrefill(Connection connection)Prefill the cachesResourcePayloadFHIRPersistenceJDBCImpl. fetchResourcePayloads(Class<? extends Resource> resourceType, Instant fromLastModified, Instant toLastModified, Function<ResourcePayload,Boolean> processor)OperationOutcomeFHIRPersistenceJDBCImpl. getHealth()<T extends Resource>
MultiResourceResult<T>FHIRPersistenceJDBCImpl. history(FHIRPersistenceContext context, Class<T> resourceType, String logicalId)voidFHIRPersistenceJDBCImpl. persistResourceTokenValueRecords(Collection<ResourceTokenValueRec> records)Called just prior to commit so that we can persist all the token value records that have been accumulated during the transaction.<T extends Resource>
SingleResourceResult<T>FHIRPersistenceJDBCImpl. read(FHIRPersistenceContext context, Class<T> resourceType, String logicalId)intFHIRPersistenceJDBCImpl. reindex(FHIRPersistenceContext context, OperationOutcome.Builder operationOutcomeResult, Instant tstamp, String resourceLogicalId)MultiResourceResult<Resource>FHIRPersistenceJDBCImpl. search(FHIRPersistenceContext context, Class<? extends Resource> resourceType)<T extends Resource>
SingleResourceResult<T>FHIRPersistenceJDBCImpl. update(FHIRPersistenceContext context, String logicalId, T resource)<T extends Resource>
SingleResourceResult<T>FHIRPersistenceJDBCImpl. vread(FHIRPersistenceContext context, Class<T> resourceType, String logicalId, String versionId) -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.postgres
Methods in com.ibm.fhir.persistence.jdbc.postgres that throw FHIRPersistenceException Modifier and Type Method Description ResourcePostgresResourceDAO. insert(Resource resource, List<ExtractedParameterValue> parameters, ParameterDAO parameterDao)Inserts the passed FHIR Resource and associated search parameters to a postgresql FHIR database.ResourcePostgresResourceNoProcDAO. insert(Resource resource, List<ExtractedParameterValue> parameters, ParameterDAO parameterDao)Inserts the passed FHIR Resource and associated search parameters to a Derby or PostgreSql FHIR database. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.util
Methods in com.ibm.fhir.persistence.jdbc.util that throw FHIRPersistenceException Modifier and Type Method Description protected SqlQueryDataJDBCQueryBuilder. buildLocationQuerySegment(String parmName, List<Bounding> boundingAreas, String paramTableAlias)protected SqlQueryDataJDBCQueryBuilder. processCompositeParm(Class<?> resourceType, QueryParameter queryParm)protected voidInclusionQuerySegmentAggregator. processIncludeJoins(StringBuilder queryString, InclusionParameter inclusionParm, Set<String> ids)Formats the JOIN clauses for an include query.protected SqlQueryDataJDBCQueryBuilder. processNumberParm(Class<?> resourceType, QueryParameter queryParm)protected voidInclusionQuerySegmentAggregator. processRevIncludeJoins(StringBuilder queryString, InclusionParameter inclusionParm, Set<String> ids)Formats the JOIN clauses for a revinclude query.protected SqlQueryDataJDBCQueryBuilder. processStringParm(QueryParameter queryParm)protected SqlQueryDataJDBCQueryBuilder. processTokenParm(Class<?> resourceType, QueryParameter queryParm)protected SqlQueryDataJDBCQueryBuilder. processUriParm(QueryParameter queryParm)protected SqlQueryDataJDBCQueryBuilder. processUriParm(QueryParameter queryParm, String tableAlias)Creates a query segment for a URI type parameter. -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.jdbc.util.type
Methods in com.ibm.fhir.persistence.jdbc.util.type that throw FHIRPersistenceException Modifier and Type Method Description voidQuantityParmBehaviorUtil. addSystemIfPresent(ParameterDAO parameterDao, StringBuilder whereClauseSegment, String tableAlias, List<Object> bindVariables, String system)adds the system if present.static voidNumberParmBehaviorUtil. executeBehavior(StringBuilder whereClauseSegment, QueryParameter queryParm, List<Object> bindVariables, Class<?> resourceType, String tableAlias, JDBCQueryBuilder queryBuilder) -
Uses of FHIRPersistenceException in com.ibm.fhir.persistence.util
Methods in com.ibm.fhir.persistence.util that throw FHIRPersistenceException Modifier and Type Method Description protected abstract T1AbstractQueryBuilder. buildLocationQuerySegment(String parmName, List<Bounding> boundingAreas, String paramTableAlias)Builds a query segment for the passed parameter name using the geospatial data contained with the passed BoundingBoxTQueryBuilder. buildQuery(Class<?> resourceType, FHIRSearchContext searchContext)Build and return query for the passed resource type and search parameters.static FHIRHistoryContextFHIRPersistenceUtil. parseHistoryParameters(Map<String,List<String>> queryParameters, boolean lenient)static FHIRSystemHistoryContextFHIRPersistenceUtil. parseSystemHistoryParameters(Map<String,List<String>> queryParameters, boolean lenient)protected abstract T1AbstractQueryBuilder. processCompositeParm(Class<?> resourceType, QueryParameter queryParm)Creates a query segment for a Composite type parameter.protected T1AbstractQueryBuilder. processLocationPosition(List<QueryParameter> queryParameters, String paramTableAlias)This method executes special logic for a Token type query that maps to a LocationPosition data type.protected abstract T1AbstractQueryBuilder. processNumberParm(Class<?> resourceType, QueryParameter queryParm)Creates a query segment for a Number type parameter.protected abstract T1AbstractQueryBuilder. processStringParm(QueryParameter queryParm)Creates a query segment for a String type parameter.protected abstract T1AbstractQueryBuilder. processTokenParm(Class<?> resourceType, QueryParameter queryParm)Creates a query segment for a Token type parameter.protected abstract T1AbstractQueryBuilder. processUriParm(QueryParameter queryParm)Creates a query segment for a URI type parameter. -
Uses of FHIRPersistenceException in com.ibm.fhir.server.resources
Methods in com.ibm.fhir.server.resources that throw FHIRPersistenceException Modifier and Type Method Description protected FHIRPersistenceFHIRResource. getPersistenceImpl()Retrieves the persistence implementation to use for the current request.protected booleanFHIRResource. isDeleteSupported()
-