Skip to content

Commit 8b77aa0

Browse files
committed
Apply spotless
1 parent ac5dbb9 commit 8b77aa0

20 files changed

+858
-826
lines changed

src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java

Lines changed: 673 additions & 682 deletions
Large diffs are not rendered by default.

src/main/java/ca/uhn/fhir/jpa/starter/Application.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public static void main(String[] args) {
4949
// UI is now accessible at http://localhost:8080/
5050
}
5151

52-
5352
@Autowired
5453
AutowireCapableBeanFactory beanFactory;
5554

@@ -64,5 +63,4 @@ public ServletRegistrationBean hapiServletRegistration(RestfulServer restfulServ
6463

6564
return servletRegistrationBean;
6665
}
67-
6866
}

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/CdsHooksServlet.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
package ca.uhn.fhir.jpa.starter.cdshooks;
22

33
import ca.uhn.fhir.jpa.starter.AppProperties;
4+
import ca.uhn.fhir.rest.api.server.cdshooks.CdsServiceRequestJson;
45
import ca.uhn.fhir.rest.server.RestfulServer;
56
import ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException;
67
import ca.uhn.hapi.fhir.cdshooks.api.ICdsServiceRegistry;
7-
import ca.uhn.fhir.rest.api.server.cdshooks.CdsServiceRequestJson;
88
import ca.uhn.hapi.fhir.cdshooks.api.json.CdsServiceResponseJson;
99
import ca.uhn.hapi.fhir.cdshooks.api.json.CdsServicesJson;
1010
import com.fasterxml.jackson.databind.ObjectMapper;
1111
import com.google.gson.GsonBuilder;
1212
import com.google.gson.JsonParser;
13+
import jakarta.servlet.ServletException;
14+
import jakarta.servlet.http.HttpServlet;
15+
import jakarta.servlet.http.HttpServletRequest;
16+
import jakarta.servlet.http.HttpServletResponse;
1317
import org.apache.http.entity.ContentType;
1418
import org.slf4j.Logger;
1519
import org.slf4j.LoggerFactory;
@@ -19,10 +23,6 @@
1923

2024
import java.io.IOException;
2125
import java.util.stream.Collectors;
22-
import jakarta.servlet.ServletException;
23-
import jakarta.servlet.http.HttpServlet;
24-
import jakarta.servlet.http.HttpServletRequest;
25-
import jakarta.servlet.http.HttpServletResponse;
2626

2727
import static ca.uhn.hapi.fhir.cdshooks.config.CdsHooksConfig.CDS_HOOKS_OBJECT_MAPPER_FACTORY;
2828

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/ErrorHandling.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
import ca.uhn.fhir.jpa.starter.AppProperties;
44
import ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException;
5+
import jakarta.servlet.http.HttpServletResponse;
56

67
import java.io.IOException;
78
import java.io.PrintWriter;
89
import java.io.StringWriter;
910
import java.util.Arrays;
10-
import jakarta.servlet.http.HttpServletResponse;
1111

1212
public class ErrorHandling {
1313

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/ModuleConfigurationPrefetchSvc.java

Lines changed: 69 additions & 38 deletions
Large diffs are not rendered by default.

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/StarterCdsHooksConfig.java

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
package ca.uhn.fhir.jpa.starter.cdshooks;
22

3+
import ca.uhn.fhir.context.FhirVersionEnum;
34
import ca.uhn.fhir.jpa.starter.cr.CrCommonConfig;
45
import ca.uhn.fhir.jpa.starter.cr.CrConfigCondition;
56
import ca.uhn.fhir.jpa.starter.cr.CrProperties;
67
import ca.uhn.hapi.fhir.cdshooks.api.ICdsHooksDaoAuthorizationSvc;
78
import ca.uhn.hapi.fhir.cdshooks.config.CdsHooksConfig;
89
import ca.uhn.hapi.fhir.cdshooks.svc.CdsHooksContextBooter;
9-
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrSettings;
10-
import ca.uhn.fhir.context.FhirVersionEnum;
1110
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrServiceRegistry;
11+
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrSettings;
1212
import ca.uhn.hapi.fhir.cdshooks.svc.cr.ICdsCrServiceRegistry;
1313
import ca.uhn.hapi.fhir.cdshooks.svc.cr.discovery.CdsCrDiscoveryServiceRegistry;
1414
import ca.uhn.hapi.fhir.cdshooks.svc.cr.discovery.ICdsCrDiscoveryServiceRegistry;
15-
import ca.uhn.hapi.fhir.cdshooks.svc.prefetch.CdsPrefetchDaoSvc;
16-
import ca.uhn.hapi.fhir.cdshooks.svc.prefetch.CdsPrefetchFhirClientSvc;
17-
import ca.uhn.hapi.fhir.cdshooks.svc.prefetch.CdsPrefetchSvc;
18-
import ca.uhn.hapi.fhir.cdshooks.svc.prefetch.CdsResolutionStrategySvc;
1915
import org.hl7.fhir.instance.model.api.IBaseResource;
2016
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
2117
import org.springframework.boot.web.servlet.ServletRegistrationBean;
@@ -29,18 +25,18 @@
2925
@Import({CdsHooksConfig.class, CrCommonConfig.class})
3026
public class StarterCdsHooksConfig {
3127

32-
// @Bean
33-
// CdsPrefetchSvc cdsPrefetchSvc(
34-
// CdsResolutionStrategySvc theCdsResolutionStrategySvc,
35-
// CdsPrefetchDaoSvc theResourcePrefetchDao,
36-
// CdsPrefetchFhirClientSvc theResourcePrefetchFhirClient,
37-
// ICdsHooksDaoAuthorizationSvc theCdsHooksDaoAuthorizationSvc) {
38-
// return new ModuleConfigurationPrefetchSvc(
39-
// theCdsResolutionStrategySvc,
40-
// theResourcePrefetchDao,
41-
// theResourcePrefetchFhirClient,
42-
// theCdsHooksDaoAuthorizationSvc);
43-
// }
28+
// @Bean
29+
// CdsPrefetchSvc cdsPrefetchSvc(
30+
// CdsResolutionStrategySvc theCdsResolutionStrategySvc,
31+
// CdsPrefetchDaoSvc theResourcePrefetchDao,
32+
// CdsPrefetchFhirClientSvc theResourcePrefetchFhirClient,
33+
// ICdsHooksDaoAuthorizationSvc theCdsHooksDaoAuthorizationSvc) {
34+
// return new ModuleConfigurationPrefetchSvc(
35+
// theCdsResolutionStrategySvc,
36+
// theResourcePrefetchDao,
37+
// theResourcePrefetchFhirClient,
38+
// theCdsHooksDaoAuthorizationSvc);
39+
// }
4440

4541
@Bean
4642
public ICdsCrDiscoveryServiceRegistry cdsCrDiscoveryServiceRegistry() {

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/UpdatedCdsCrServiceR4.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
package ca.uhn.fhir.jpa.starter.cdshooks;
22

33
import ca.uhn.fhir.rest.api.server.RequestDetails;
4-
import ca.uhn.hapi.fhir.cdshooks.api.ICdsConfigService;
54
import ca.uhn.fhir.rest.api.server.cdshooks.CdsServiceRequestJson;
5+
import ca.uhn.hapi.fhir.cdshooks.api.ICdsConfigService;
66
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrServiceR4;
77
import org.hl7.fhir.r4.model.BooleanType;
88
import org.hl7.fhir.r4.model.Parameters;
99
import org.opencds.cqf.fhir.api.Repository;
1010

11-
import java.util.stream.Collectors;
12-
1311
import static ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrConstants.APPLY_PARAMETER_DATA;
14-
import static ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrConstants.APPLY_PARAMETER_DATA_ENDPOINT;
1512
import static org.opencds.cqf.fhir.utility.r4.Parameters.part;
1613

1714
public class UpdatedCdsCrServiceR4 extends CdsCrServiceR4 {
18-
public UpdatedCdsCrServiceR4(RequestDetails theRequestDetails, Repository theRepository, ICdsConfigService theCdsConfigService) {
15+
public UpdatedCdsCrServiceR4(
16+
RequestDetails theRequestDetails, Repository theRepository, ICdsConfigService theCdsConfigService) {
1917
super(theRequestDetails, theRepository, theCdsConfigService);
2018
}
2119

src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
package ca.uhn.fhir.jpa.starter.common;
22

3-
import ca.uhn.fhir.context.FhirContext;
4-
import ca.uhn.fhir.interceptor.api.IInterceptorService;
53
import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
64
import ca.uhn.fhir.jpa.binary.api.IBinaryStorageSvc;
75
import ca.uhn.fhir.jpa.binstore.DatabaseBinaryContentStorageSvcImpl;
86
import ca.uhn.fhir.jpa.config.HibernatePropertiesProvider;
9-
import ca.uhn.fhir.jpa.interceptor.PatientIdPartitionInterceptor;
107
import ca.uhn.fhir.jpa.model.config.PartitionSettings;
118
import ca.uhn.fhir.jpa.model.config.PartitionSettings.CrossPartitionReferenceMode;
129
import ca.uhn.fhir.jpa.model.config.SubscriptionSettings;
1310
import ca.uhn.fhir.jpa.model.entity.StorageSettings;
14-
import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor;
1511
import ca.uhn.fhir.jpa.starter.AppProperties;
1612
import ca.uhn.fhir.jpa.starter.util.JpaHibernatePropertiesProvider;
1713
import ca.uhn.fhir.jpa.subscription.match.deliver.email.EmailSenderImpl;
@@ -100,31 +96,30 @@ public SubscriptionSettings subscriptionSettings(AppProperties appProperties) {
10096
if (appProperties.getSubscription() != null) {
10197
if (appProperties.getSubscription().getEmail() != null)
10298
subscriptionSettings.setEmailFromAddress(
103-
appProperties.getSubscription().getEmail().getFrom());
99+
appProperties.getSubscription().getEmail().getFrom());
104100

105101
// Subscriptions are enabled by channel type
106102
if (appProperties.getSubscription().getResthook_enabled()) {
107103
ourLog.info("Enabling REST-hook subscriptions");
108104
subscriptionSettings.addSupportedSubscriptionType(
109-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.RESTHOOK);
105+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.RESTHOOK);
110106
}
111107
if (appProperties.getSubscription().getEmail() != null) {
112108
ourLog.info("Enabling email subscriptions");
113109
subscriptionSettings.addSupportedSubscriptionType(
114-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.EMAIL);
110+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.EMAIL);
115111
}
116112
if (appProperties.getSubscription().getWebsocket_enabled()) {
117113
ourLog.info("Enabling websocket subscriptions");
118114
subscriptionSettings.addSupportedSubscriptionType(
119-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.WEBSOCKET);
115+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.WEBSOCKET);
120116
}
121-
122117
}
123118
if (appProperties.getMdm_enabled()) {
124119
// MDM requires the subscription of type message
125120
ourLog.info("Enabling message subscriptions");
126121
subscriptionSettings.addSupportedSubscriptionType(
127-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.MESSAGE);
122+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.MESSAGE);
128123
}
129124
return subscriptionSettings;
130125
}
@@ -141,8 +136,7 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
141136
: StorageSettings.IndexEnabledEnum.DISABLED);
142137
jpaStorageSettings.setAutoCreatePlaceholderReferenceTargets(
143138
appProperties.getAuto_create_placeholder_reference_targets());
144-
jpaStorageSettings.setMassIngestionMode(
145-
appProperties.getMass_ingestion_mode_enabled());
139+
jpaStorageSettings.setMassIngestionMode(appProperties.getMass_ingestion_mode_enabled());
146140
jpaStorageSettings.setAutoVersionReferenceAtPaths(appProperties.getAuto_version_reference_at_paths());
147141
jpaStorageSettings.setEnforceReferentialIntegrityOnWrite(
148142
appProperties.getEnforce_referential_integrity_on_write());
@@ -155,7 +149,8 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
155149
jpaStorageSettings.setDeleteExpungeEnabled(appProperties.getDelete_expunge_enabled());
156150
jpaStorageSettings.setExpungeEnabled(appProperties.getExpunge_enabled());
157151
jpaStorageSettings.setLanguageSearchParameterEnabled(appProperties.getLanguage_search_parameter_enabled());
158-
jpaStorageSettings.setValidateResourceStatusForPackageUpload(appProperties.getValidate_resource_status_for_package_upload());
152+
jpaStorageSettings.setValidateResourceStatusForPackageUpload(
153+
appProperties.getValidate_resource_status_for_package_upload());
159154
jpaStorageSettings.setIndexOnUpliftedRefchains(appProperties.getUpliftedRefchains_enabled());
160155

161156
if (!appProperties.getSearch_prefetch_thresholds().isEmpty()) {
@@ -174,8 +169,6 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
174169
Long retainCachedSearchesMinutes = appProperties.getRetain_cached_searches_mins();
175170
jpaStorageSettings.setExpireSearchResultsAfterMillis(retainCachedSearchesMinutes * 60 * 1000);
176171

177-
178-
179172
jpaStorageSettings.setFilterParameterEnabled(appProperties.getFilter_search_enabled());
180173
jpaStorageSettings.setHibernateSearchIndexSearchParams(appProperties.getAdvanced_lucene_indexing());
181174
jpaStorageSettings.setTreatBaseUrlsAsLocal(new HashSet<>(appProperties.getLocal_base_urls()));
@@ -222,8 +215,8 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
222215
jpaStorageSettings.setResourceServerIdStrategy(appProperties.getServer_id_strategy());
223216
ourLog.info("Server configured to use '" + appProperties.getServer_id_strategy() + "' Server ID Strategy");
224217
}
225-
226-
//to Disable the Resource History
218+
219+
// to Disable the Resource History
227220
jpaStorageSettings.setResourceDbHistoryEnabled(appProperties.getResource_dbhistory_enabled());
228221

229222
// Parallel Batch GET execution settings
@@ -239,15 +232,15 @@ public YamlPropertySourceLoader yamlPropertySourceLoader() {
239232
return new YamlPropertySourceLoader();
240233
}
241234

242-
243235
@Bean
244236
public PartitionSettings partitionSettings(AppProperties appProperties) {
245237
PartitionSettings retVal = new PartitionSettings();
246238

247239
// Partitioning
248240
if (appProperties.getPartitioning() != null) {
249241
retVal.setPartitioningEnabled(true);
250-
boolean databasePartitionModeEnabled = defaultIfNull(appProperties.getPartitioning().getDatabase_partition_mode_enabled(), Boolean.FALSE);
242+
boolean databasePartitionModeEnabled =
243+
defaultIfNull(appProperties.getPartitioning().getDatabase_partition_mode_enabled(), Boolean.FALSE);
251244
Integer defaultPartitionId = appProperties.getPartitioning().getDefault_partition_id();
252245
if (databasePartitionModeEnabled) {
253246
retVal.setDatabasePartitionMode(true);
@@ -262,10 +255,9 @@ public PartitionSettings partitionSettings(AppProperties appProperties) {
262255
retVal.setAllowReferencesAcrossPartitions(CrossPartitionReferenceMode.NOT_ALLOWED);
263256
}
264257
retVal.setConditionalCreateDuplicateIdentifiersEnabled(
265-
appProperties.getPartitioning().getConditional_create_duplicate_identifiers_enabled());
258+
appProperties.getPartitioning().getConditional_create_duplicate_identifiers_enabled());
266259
}
267260

268-
269261
return retVal;
270262
}
271263

@@ -274,7 +266,6 @@ public PartitionModeConfigurer partitionModeConfigurer() {
274266
return new PartitionModeConfigurer();
275267
}
276268

277-
278269
@Primary
279270
@Bean
280271
public HibernatePropertiesProvider jpaStarterDialectProvider(

src/main/java/ca/uhn/fhir/jpa/starter/common/PartitionModeConfigurer.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package ca.uhn.fhir.jpa.starter.common;
22

33
import ca.uhn.fhir.context.FhirContext;
4-
import ca.uhn.fhir.interceptor.api.IInterceptorService;
54
import ca.uhn.fhir.jpa.interceptor.PatientIdPartitionInterceptor;
65
import ca.uhn.fhir.jpa.model.config.PartitionSettings;
76
import ca.uhn.fhir.jpa.partition.PartitionManagementProvider;
@@ -20,24 +19,29 @@ public class PartitionModeConfigurer {
2019

2120
@Autowired
2221
private AppProperties myAppProperties;
22+
2323
@Autowired
2424
private FhirContext myFhirContext;
25+
2526
@Autowired
2627
private ISearchParamExtractor mySearchParamExtractor;
28+
2729
@Autowired
2830
private PartitionSettings myPartitionSettings;
31+
2932
@Autowired
3033
private RestfulServer myRestfulServer;
34+
3135
@Autowired
3236
private PartitionManagementProvider myPartitionManagementProvider;
3337

34-
3538
@PostConstruct
3639
public void start() {
3740
if (myAppProperties.getPartitioning() != null) {
3841
if (myAppProperties.getPartitioning().getPatient_id_partitioning_mode() == Boolean.TRUE) {
3942
ourLog.info("Partitioning mode enabled in: Patient ID partitioning mode");
40-
PatientIdPartitionInterceptor patientIdInterceptor = new PatientIdPartitionInterceptor(myFhirContext, mySearchParamExtractor, myPartitionSettings);
43+
PatientIdPartitionInterceptor patientIdInterceptor =
44+
new PatientIdPartitionInterceptor(myFhirContext, mySearchParamExtractor, myPartitionSettings);
4145
myRestfulServer.registerInterceptor(patientIdInterceptor);
4246
myPartitionSettings.setUnnamedPartitionMode(true);
4347
} else if (myAppProperties.getPartitioning().getRequest_tenant_partitioning_mode() == Boolean.TRUE) {
@@ -49,5 +53,4 @@ public void start() {
4953
myRestfulServer.registerProviders(myPartitionManagementProvider);
5054
}
5155
}
52-
5356
}

src/main/java/ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.java

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@
9292
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
9393
import org.springframework.web.cors.CorsConfiguration;
9494

95-
import javax.sql.DataSource;
9695
import java.util.Arrays;
9796
import java.util.Collections;
9897
import java.util.List;
9998
import java.util.Map;
10099
import java.util.Optional;
100+
import javax.sql.DataSource;
101101

102102
import static ca.uhn.fhir.jpa.starter.common.validation.IRepositoryValidationInterceptorFactory.ENABLE_REPOSITORY_VALIDATING_INTERCEPTOR;
103103

@@ -147,11 +147,12 @@ public ResourceCountCache resourceCountsCache(IFhirSystemDao<?, ?> theSystemDao)
147147
@Primary
148148
@Bean
149149
public LocalContainerEntityManagerFactoryBean entityManagerFactory(
150-
DataSource myDataSource,
151-
ConfigurableListableBeanFactory myConfigurableListableBeanFactory,
152-
FhirContext theFhirContext, JpaStorageSettings theStorageSettings) {
153-
LocalContainerEntityManagerFactoryBean retVal =
154-
HapiEntityManagerFactoryUtil.newEntityManagerFactory(myConfigurableListableBeanFactory, theFhirContext, theStorageSettings);
150+
DataSource myDataSource,
151+
ConfigurableListableBeanFactory myConfigurableListableBeanFactory,
152+
FhirContext theFhirContext,
153+
JpaStorageSettings theStorageSettings) {
154+
LocalContainerEntityManagerFactoryBean retVal = HapiEntityManagerFactoryUtil.newEntityManagerFactory(
155+
myConfigurableListableBeanFactory, theFhirContext, theStorageSettings);
155156
retVal.setPersistenceUnitName("HAPI_PU");
156157

157158
try {
@@ -203,9 +204,9 @@ public LoggingInterceptor loggingInterceptor(AppProperties appProperties) {
203204
@Primary
204205
@Conditional(OnImplementationGuidesPresent.class)
205206
public IPackageInstallerSvc packageInstaller(
206-
AppProperties appProperties,
207-
IPackageInstallerSvc packageInstallerSvc,
208-
Batch2JobRegisterer batch2JobRegisterer) {
207+
AppProperties appProperties,
208+
IPackageInstallerSvc packageInstallerSvc,
209+
Batch2JobRegisterer batch2JobRegisterer) {
209210

210211
batch2JobRegisterer.start();
211212

@@ -287,7 +288,8 @@ public RestfulServer restfulServer(
287288
IPackageInstallerSvc packageInstallerSvc,
288289
ThreadSafeResourceDeleterSvc theThreadSafeResourceDeleterSvc,
289290
ApplicationContext appContext,
290-
Optional<IpsOperationProvider> theIpsOperationProvider, Optional<IImplementationGuideOperationProvider> implementationGuideOperationProvider) {
291+
Optional<IpsOperationProvider> theIpsOperationProvider,
292+
Optional<IImplementationGuideOperationProvider> implementationGuideOperationProvider) {
291293
RestfulServer fhirServer = new RestfulServer(fhirSystemDao.getContext());
292294

293295
List<String> supportedResourceTypes = appProperties.getSupported_resource_types();
@@ -464,7 +466,7 @@ public RestfulServer restfulServer(
464466
fhirServer.registerProvider(theIpsOperationProvider.get());
465467
}
466468

467-
if (appProperties.getUserRequestRetryVersionConflictsInterceptorEnabled() ) {
469+
if (appProperties.getUserRequestRetryVersionConflictsInterceptorEnabled()) {
468470
fhirServer.registerInterceptor(new UserRequestRetryVersionConflictsInterceptor());
469471
}
470472

@@ -520,7 +522,7 @@ private void registerCustomInterceptors(
520522
*/
521523
@SuppressWarnings({"unchecked", "rawtypes"})
522524
private void registerCustomProviders(
523-
RestfulServer fhirServer, ApplicationContext theAppContext, List<String> customProviderClasses) {
525+
RestfulServer fhirServer, ApplicationContext theAppContext, List<String> customProviderClasses) {
524526

525527
if (customProviderClasses == null) {
526528
return;

0 commit comments

Comments
 (0)