Skip to content

Commit 80ef9ac

Browse files
committed
Revert "Apply spotless"
This reverts commit 8b77aa0.
1 parent 8b77aa0 commit 80ef9ac

20 files changed

+826
-858
lines changed

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

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

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

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

52+
5253
@Autowired
5354
AutowireCapableBeanFactory beanFactory;
5455

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

6465
return servletRegistrationBean;
6566
}
67+
6668
}

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,19 +1,15 @@
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;
54
import ca.uhn.fhir.rest.server.RestfulServer;
65
import ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException;
76
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;
1713
import org.apache.http.entity.ContentType;
1814
import org.slf4j.Logger;
1915
import org.slf4j.LoggerFactory;
@@ -23,6 +19,10 @@
2319

2420
import java.io.IOException;
2521
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;
65

76
import java.io.IOException;
87
import java.io.PrintWriter;
98
import java.io.StringWriter;
109
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: 38 additions & 69 deletions
Large diffs are not rendered by default.

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

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

3-
import ca.uhn.fhir.context.FhirVersionEnum;
43
import ca.uhn.fhir.jpa.starter.cr.CrCommonConfig;
54
import ca.uhn.fhir.jpa.starter.cr.CrConfigCondition;
65
import ca.uhn.fhir.jpa.starter.cr.CrProperties;
76
import ca.uhn.hapi.fhir.cdshooks.api.ICdsHooksDaoAuthorizationSvc;
87
import ca.uhn.hapi.fhir.cdshooks.config.CdsHooksConfig;
98
import ca.uhn.hapi.fhir.cdshooks.svc.CdsHooksContextBooter;
10-
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrServiceRegistry;
119
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrSettings;
10+
import ca.uhn.fhir.context.FhirVersionEnum;
11+
import ca.uhn.hapi.fhir.cdshooks.svc.cr.CdsCrServiceRegistry;
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;
1519
import org.hl7.fhir.instance.model.api.IBaseResource;
1620
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
1721
import org.springframework.boot.web.servlet.ServletRegistrationBean;
@@ -25,18 +29,18 @@
2529
@Import({CdsHooksConfig.class, CrCommonConfig.class})
2630
public class StarterCdsHooksConfig {
2731

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-
// }
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+
// }
4044

4145
@Bean
4246
public ICdsCrDiscoveryServiceRegistry cdsCrDiscoveryServiceRegistry() {

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

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

33
import ca.uhn.fhir.rest.api.server.RequestDetails;
4-
import ca.uhn.fhir.rest.api.server.cdshooks.CdsServiceRequestJson;
54
import ca.uhn.hapi.fhir.cdshooks.api.ICdsConfigService;
5+
import ca.uhn.fhir.rest.api.server.cdshooks.CdsServiceRequestJson;
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+
1113
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;
1215
import static org.opencds.cqf.fhir.utility.r4.Parameters.part;
1316

1417
public class UpdatedCdsCrServiceR4 extends CdsCrServiceR4 {
15-
public UpdatedCdsCrServiceR4(
16-
RequestDetails theRequestDetails, Repository theRepository, ICdsConfigService theCdsConfigService) {
18+
public UpdatedCdsCrServiceR4(RequestDetails theRequestDetails, Repository theRepository, ICdsConfigService theCdsConfigService) {
1719
super(theRequestDetails, theRepository, theCdsConfigService);
1820
}
1921

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

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

3+
import ca.uhn.fhir.context.FhirContext;
4+
import ca.uhn.fhir.interceptor.api.IInterceptorService;
35
import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
46
import ca.uhn.fhir.jpa.binary.api.IBinaryStorageSvc;
57
import ca.uhn.fhir.jpa.binstore.DatabaseBinaryContentStorageSvcImpl;
68
import ca.uhn.fhir.jpa.config.HibernatePropertiesProvider;
9+
import ca.uhn.fhir.jpa.interceptor.PatientIdPartitionInterceptor;
710
import ca.uhn.fhir.jpa.model.config.PartitionSettings;
811
import ca.uhn.fhir.jpa.model.config.PartitionSettings.CrossPartitionReferenceMode;
912
import ca.uhn.fhir.jpa.model.config.SubscriptionSettings;
1013
import ca.uhn.fhir.jpa.model.entity.StorageSettings;
14+
import ca.uhn.fhir.jpa.searchparam.extractor.ISearchParamExtractor;
1115
import ca.uhn.fhir.jpa.starter.AppProperties;
1216
import ca.uhn.fhir.jpa.starter.util.JpaHibernatePropertiesProvider;
1317
import ca.uhn.fhir.jpa.subscription.match.deliver.email.EmailSenderImpl;
@@ -96,30 +100,31 @@ public SubscriptionSettings subscriptionSettings(AppProperties appProperties) {
96100
if (appProperties.getSubscription() != null) {
97101
if (appProperties.getSubscription().getEmail() != null)
98102
subscriptionSettings.setEmailFromAddress(
99-
appProperties.getSubscription().getEmail().getFrom());
103+
appProperties.getSubscription().getEmail().getFrom());
100104

101105
// Subscriptions are enabled by channel type
102106
if (appProperties.getSubscription().getResthook_enabled()) {
103107
ourLog.info("Enabling REST-hook subscriptions");
104108
subscriptionSettings.addSupportedSubscriptionType(
105-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.RESTHOOK);
109+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.RESTHOOK);
106110
}
107111
if (appProperties.getSubscription().getEmail() != null) {
108112
ourLog.info("Enabling email subscriptions");
109113
subscriptionSettings.addSupportedSubscriptionType(
110-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.EMAIL);
114+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.EMAIL);
111115
}
112116
if (appProperties.getSubscription().getWebsocket_enabled()) {
113117
ourLog.info("Enabling websocket subscriptions");
114118
subscriptionSettings.addSupportedSubscriptionType(
115-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.WEBSOCKET);
119+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.WEBSOCKET);
116120
}
121+
117122
}
118123
if (appProperties.getMdm_enabled()) {
119124
// MDM requires the subscription of type message
120125
ourLog.info("Enabling message subscriptions");
121126
subscriptionSettings.addSupportedSubscriptionType(
122-
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.MESSAGE);
127+
org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType.MESSAGE);
123128
}
124129
return subscriptionSettings;
125130
}
@@ -136,7 +141,8 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
136141
: StorageSettings.IndexEnabledEnum.DISABLED);
137142
jpaStorageSettings.setAutoCreatePlaceholderReferenceTargets(
138143
appProperties.getAuto_create_placeholder_reference_targets());
139-
jpaStorageSettings.setMassIngestionMode(appProperties.getMass_ingestion_mode_enabled());
144+
jpaStorageSettings.setMassIngestionMode(
145+
appProperties.getMass_ingestion_mode_enabled());
140146
jpaStorageSettings.setAutoVersionReferenceAtPaths(appProperties.getAuto_version_reference_at_paths());
141147
jpaStorageSettings.setEnforceReferentialIntegrityOnWrite(
142148
appProperties.getEnforce_referential_integrity_on_write());
@@ -149,8 +155,7 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
149155
jpaStorageSettings.setDeleteExpungeEnabled(appProperties.getDelete_expunge_enabled());
150156
jpaStorageSettings.setExpungeEnabled(appProperties.getExpunge_enabled());
151157
jpaStorageSettings.setLanguageSearchParameterEnabled(appProperties.getLanguage_search_parameter_enabled());
152-
jpaStorageSettings.setValidateResourceStatusForPackageUpload(
153-
appProperties.getValidate_resource_status_for_package_upload());
158+
jpaStorageSettings.setValidateResourceStatusForPackageUpload(appProperties.getValidate_resource_status_for_package_upload());
154159
jpaStorageSettings.setIndexOnUpliftedRefchains(appProperties.getUpliftedRefchains_enabled());
155160

156161
if (!appProperties.getSearch_prefetch_thresholds().isEmpty()) {
@@ -169,6 +174,8 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
169174
Long retainCachedSearchesMinutes = appProperties.getRetain_cached_searches_mins();
170175
jpaStorageSettings.setExpireSearchResultsAfterMillis(retainCachedSearchesMinutes * 60 * 1000);
171176

177+
178+
172179
jpaStorageSettings.setFilterParameterEnabled(appProperties.getFilter_search_enabled());
173180
jpaStorageSettings.setHibernateSearchIndexSearchParams(appProperties.getAdvanced_lucene_indexing());
174181
jpaStorageSettings.setTreatBaseUrlsAsLocal(new HashSet<>(appProperties.getLocal_base_urls()));
@@ -215,8 +222,8 @@ public JpaStorageSettings jpaStorageSettings(AppProperties appProperties) {
215222
jpaStorageSettings.setResourceServerIdStrategy(appProperties.getServer_id_strategy());
216223
ourLog.info("Server configured to use '" + appProperties.getServer_id_strategy() + "' Server ID Strategy");
217224
}
218-
219-
// to Disable the Resource History
225+
226+
//to Disable the Resource History
220227
jpaStorageSettings.setResourceDbHistoryEnabled(appProperties.getResource_dbhistory_enabled());
221228

222229
// Parallel Batch GET execution settings
@@ -232,15 +239,15 @@ public YamlPropertySourceLoader yamlPropertySourceLoader() {
232239
return new YamlPropertySourceLoader();
233240
}
234241

242+
235243
@Bean
236244
public PartitionSettings partitionSettings(AppProperties appProperties) {
237245
PartitionSettings retVal = new PartitionSettings();
238246

239247
// Partitioning
240248
if (appProperties.getPartitioning() != null) {
241249
retVal.setPartitioningEnabled(true);
242-
boolean databasePartitionModeEnabled =
243-
defaultIfNull(appProperties.getPartitioning().getDatabase_partition_mode_enabled(), Boolean.FALSE);
250+
boolean databasePartitionModeEnabled = defaultIfNull(appProperties.getPartitioning().getDatabase_partition_mode_enabled(), Boolean.FALSE);
244251
Integer defaultPartitionId = appProperties.getPartitioning().getDefault_partition_id();
245252
if (databasePartitionModeEnabled) {
246253
retVal.setDatabasePartitionMode(true);
@@ -255,9 +262,10 @@ public PartitionSettings partitionSettings(AppProperties appProperties) {
255262
retVal.setAllowReferencesAcrossPartitions(CrossPartitionReferenceMode.NOT_ALLOWED);
256263
}
257264
retVal.setConditionalCreateDuplicateIdentifiersEnabled(
258-
appProperties.getPartitioning().getConditional_create_duplicate_identifiers_enabled());
265+
appProperties.getPartitioning().getConditional_create_duplicate_identifiers_enabled());
259266
}
260267

268+
261269
return retVal;
262270
}
263271

@@ -266,6 +274,7 @@ public PartitionModeConfigurer partitionModeConfigurer() {
266274
return new PartitionModeConfigurer();
267275
}
268276

277+
269278
@Primary
270279
@Bean
271280
public HibernatePropertiesProvider jpaStarterDialectProvider(

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

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

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

2021
@Autowired
2122
private AppProperties myAppProperties;
22-
2323
@Autowired
2424
private FhirContext myFhirContext;
25-
2625
@Autowired
2726
private ISearchParamExtractor mySearchParamExtractor;
28-
2927
@Autowired
3028
private PartitionSettings myPartitionSettings;
31-
3229
@Autowired
3330
private RestfulServer myRestfulServer;
34-
3531
@Autowired
3632
private PartitionManagementProvider myPartitionManagementProvider;
3733

34+
3835
@PostConstruct
3936
public void start() {
4037
if (myAppProperties.getPartitioning() != null) {
4138
if (myAppProperties.getPartitioning().getPatient_id_partitioning_mode() == Boolean.TRUE) {
4239
ourLog.info("Partitioning mode enabled in: Patient ID partitioning mode");
43-
PatientIdPartitionInterceptor patientIdInterceptor =
44-
new PatientIdPartitionInterceptor(myFhirContext, mySearchParamExtractor, myPartitionSettings);
40+
PatientIdPartitionInterceptor patientIdInterceptor = new PatientIdPartitionInterceptor(myFhirContext, mySearchParamExtractor, myPartitionSettings);
4541
myRestfulServer.registerInterceptor(patientIdInterceptor);
4642
myPartitionSettings.setUnnamedPartitionMode(true);
4743
} else if (myAppProperties.getPartitioning().getRequest_tenant_partitioning_mode() == Boolean.TRUE) {
@@ -53,4 +49,5 @@ public void start() {
5349
myRestfulServer.registerProviders(myPartitionManagementProvider);
5450
}
5551
}
52+
5653
}

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

Lines changed: 12 additions & 14 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;
9596
import java.util.Arrays;
9697
import java.util.Collections;
9798
import java.util.List;
9899
import java.util.Map;
99100
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,12 +147,11 @@ public ResourceCountCache resourceCountsCache(IFhirSystemDao<?, ?> theSystemDao)
147147
@Primary
148148
@Bean
149149
public LocalContainerEntityManagerFactoryBean entityManagerFactory(
150-
DataSource myDataSource,
151-
ConfigurableListableBeanFactory myConfigurableListableBeanFactory,
152-
FhirContext theFhirContext,
153-
JpaStorageSettings theStorageSettings) {
154-
LocalContainerEntityManagerFactoryBean retVal = HapiEntityManagerFactoryUtil.newEntityManagerFactory(
155-
myConfigurableListableBeanFactory, theFhirContext, theStorageSettings);
150+
DataSource myDataSource,
151+
ConfigurableListableBeanFactory myConfigurableListableBeanFactory,
152+
FhirContext theFhirContext, JpaStorageSettings theStorageSettings) {
153+
LocalContainerEntityManagerFactoryBean retVal =
154+
HapiEntityManagerFactoryUtil.newEntityManagerFactory(myConfigurableListableBeanFactory, theFhirContext, theStorageSettings);
156155
retVal.setPersistenceUnitName("HAPI_PU");
157156

158157
try {
@@ -204,9 +203,9 @@ public LoggingInterceptor loggingInterceptor(AppProperties appProperties) {
204203
@Primary
205204
@Conditional(OnImplementationGuidesPresent.class)
206205
public IPackageInstallerSvc packageInstaller(
207-
AppProperties appProperties,
208-
IPackageInstallerSvc packageInstallerSvc,
209-
Batch2JobRegisterer batch2JobRegisterer) {
206+
AppProperties appProperties,
207+
IPackageInstallerSvc packageInstallerSvc,
208+
Batch2JobRegisterer batch2JobRegisterer) {
210209

211210
batch2JobRegisterer.start();
212211

@@ -288,8 +287,7 @@ public RestfulServer restfulServer(
288287
IPackageInstallerSvc packageInstallerSvc,
289288
ThreadSafeResourceDeleterSvc theThreadSafeResourceDeleterSvc,
290289
ApplicationContext appContext,
291-
Optional<IpsOperationProvider> theIpsOperationProvider,
292-
Optional<IImplementationGuideOperationProvider> implementationGuideOperationProvider) {
290+
Optional<IpsOperationProvider> theIpsOperationProvider, Optional<IImplementationGuideOperationProvider> implementationGuideOperationProvider) {
293291
RestfulServer fhirServer = new RestfulServer(fhirSystemDao.getContext());
294292

295293
List<String> supportedResourceTypes = appProperties.getSupported_resource_types();
@@ -466,7 +464,7 @@ public RestfulServer restfulServer(
466464
fhirServer.registerProvider(theIpsOperationProvider.get());
467465
}
468466

469-
if (appProperties.getUserRequestRetryVersionConflictsInterceptorEnabled()) {
467+
if (appProperties.getUserRequestRetryVersionConflictsInterceptorEnabled() ) {
470468
fhirServer.registerInterceptor(new UserRequestRetryVersionConflictsInterceptor());
471469
}
472470

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

527525
if (customProviderClasses == null) {
528526
return;

0 commit comments

Comments
 (0)