From 70da0dc7a728c12698ae49c49d4056a65ec47c57 Mon Sep 17 00:00:00 2001 From: "dotasek.dev" Date: Fri, 19 Apr 2024 14:02:43 -0400 Subject: [PATCH] Bump HAPI version, switch to DatabaseBinaryContentStorageSvcImpl --- pom.xml | 2 +- .../uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index bd771ba..105ce4d 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.1.8-SNAPSHOT + 7.1.10-SNAPSHOT hapi-fhir-jpaserver-starter diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java b/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java index 1347028..5fe3cd4 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java @@ -2,7 +2,7 @@ package ca.uhn.fhir.jpa.starter.common; import ca.uhn.fhir.jpa.api.config.JpaStorageSettings; import ca.uhn.fhir.jpa.binary.api.IBinaryStorageSvc; -import ca.uhn.fhir.jpa.binstore.DatabaseBlobBinaryStorageSvcImpl; +import ca.uhn.fhir.jpa.binstore.DatabaseBinaryContentStorageSvcImpl; import ca.uhn.fhir.jpa.config.HibernatePropertiesProvider; import ca.uhn.fhir.jpa.model.config.PartitionSettings; import ca.uhn.fhir.jpa.model.config.PartitionSettings.CrossPartitionReferenceMode; @@ -88,7 +88,7 @@ public class FhirServerConfigCommon { } /** - * Configure FHIR properties around the the JPA server via this bean + * Configure FHIR properties around the JPA server via this bean */ @Bean public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) { @@ -261,7 +261,7 @@ public class FhirServerConfigCommon { @Lazy @Bean public IBinaryStorageSvc binaryStorageSvc(AppProperties appProperties) { - DatabaseBlobBinaryStorageSvcImpl binaryStorageSvc = new DatabaseBlobBinaryStorageSvcImpl(); + DatabaseBinaryContentStorageSvcImpl binaryStorageSvc = new DatabaseBinaryContentStorageSvcImpl(); if (appProperties.getMax_binary_size() != null) { binaryStorageSvc.setMaximumBinarySize(appProperties.getMax_binary_size());