Merge pull request #919 from hapifhir/fix-FilesystemBinaryStorage-interceptor

Fix filesystem binary storage interceptor
This commit is contained in:
Patrick Werner
2026-02-16 12:48:30 +01:00
committed by GitHub
7 changed files with 51 additions and 18 deletions

View File

@@ -69,7 +69,7 @@ public class AppProperties {
private BinaryStorageMode binary_storage_mode = BinaryStorageMode.DATABASE;
private String binary_storage_filesystem_base_directory;
private Integer inline_resource_storage_below_size;
private Integer binary_storage_minimum_binary_size;
private Boolean bulk_export_enabled = false;
private Boolean bulk_import_enabled = false;
private Boolean default_pretty_print = true;
@@ -513,12 +513,12 @@ public class AppProperties {
this.binary_storage_filesystem_base_directory = binary_storage_filesystem_base_directory;
}
public Integer getInline_resource_storage_below_size() {
return inline_resource_storage_below_size;
public Integer getBinary_storage_minimum_binary_size() {
return binary_storage_minimum_binary_size;
}
public void setInline_resource_storage_below_size(Integer inline_resource_storage_below_size) {
this.inline_resource_storage_below_size = inline_resource_storage_below_size;
public void setBinary_storage_minimum_binary_size(Integer binary_storage_minimum_binary_size) {
this.binary_storage_minimum_binary_size = binary_storage_minimum_binary_size;
}
public Boolean getBulk_export_enabled() {