spotless
This commit is contained in:
parent
e5ba5a535e
commit
873f679316
|
@ -21,7 +21,6 @@ package ca.uhn.fhir.jpa.dao;
|
|||
|
||||
import ca.uhn.fhir.batch2.api.IJobCoordinator;
|
||||
import ca.uhn.fhir.batch2.api.IJobPartitionProvider;
|
||||
import ca.uhn.fhir.batch2.jobs.reindex.ReindexAppCtx;
|
||||
import ca.uhn.fhir.batch2.jobs.reindex.ReindexJobParameters;
|
||||
import ca.uhn.fhir.batch2.model.JobInstanceStartRequest;
|
||||
import ca.uhn.fhir.context.FhirVersionEnum;
|
||||
|
|
|
@ -56,7 +56,6 @@ public class ReindexStepV1 implements IJobStepWorker<ReindexJobParameters, Resou
|
|||
|
||||
private final IIdHelperService<IResourcePersistentId<?>> myIdHelperService;
|
||||
|
||||
|
||||
public ReindexStepV1(
|
||||
HapiTransactionService theHapiTransactionService,
|
||||
IFhirSystemDao<?, ?> theSystemDao,
|
||||
|
|
|
@ -29,6 +29,7 @@ import static ca.uhn.fhir.batch2.jobs.reindex.ReindexUtils.JOB_REINDEX;
|
|||
public class ReindexV1Config {
|
||||
@Autowired
|
||||
private ReindexJobService myReindexJobService;
|
||||
|
||||
@Autowired
|
||||
private HapiTransactionService myHapiTransactionService;
|
||||
|
||||
|
|
|
@ -40,7 +40,6 @@ public class ReindexStepV2
|
|||
|
||||
private final IIdHelperService<IResourcePersistentId<?>> myIdHelperService;
|
||||
|
||||
|
||||
public ReindexStepV2(
|
||||
ReindexJobService theJobService,
|
||||
HapiTransactionService theHapiTransactionService,
|
||||
|
|
|
@ -30,6 +30,7 @@ public class ReindexV2Config {
|
|||
|
||||
@Autowired
|
||||
private ReindexJobService myReindexJobService;
|
||||
|
||||
@Autowired
|
||||
private HapiTransactionService myHapiTransactionService;
|
||||
|
||||
|
@ -53,7 +54,6 @@ public class ReindexV2Config {
|
|||
@Autowired
|
||||
private ReindexJobParametersValidatorV2 myReindexJobParametersValidator;
|
||||
|
||||
|
||||
// Version 2
|
||||
@Bean
|
||||
public JobDefinition<ReindexJobParameters> reindexJobDefinitionV2() {
|
||||
|
@ -87,7 +87,8 @@ public class ReindexV2Config {
|
|||
|
||||
@Bean
|
||||
public ReindexStepV2 reindexStepV2() {
|
||||
return new ReindexStepV2(myReindexJobService, myHapiTransactionService, mySystemDao, myRegistry, myIdHelperService);
|
||||
return new ReindexStepV2(
|
||||
myReindexJobService, myHapiTransactionService, mySystemDao, myRegistry, myIdHelperService);
|
||||
}
|
||||
|
||||
@Bean("reindexGenerateRangeChunkStepV2")
|
||||
|
|
Loading…
Reference in New Issue