FIXME cleanup
This commit is contained in:
parent
882eb99f29
commit
34f3fcb9d3
|
@ -62,7 +62,6 @@ public class FhirValidator {
|
|||
private final FhirContext myContext;
|
||||
private List<IValidatorModule> myValidators = new ArrayList<>();
|
||||
private IInterceptorBroadcaster myInterceptorBraodcaster;
|
||||
// FIXME KHS make it clear in the docs that bundle structure is not validated when this is true
|
||||
private boolean myConcurrentBundleValidation;
|
||||
|
||||
private ExecutorService myExecutorService;
|
||||
|
@ -330,7 +329,6 @@ public class FhirValidator {
|
|||
myInterceptorBraodcaster = theInterceptorBraodcaster;
|
||||
}
|
||||
|
||||
// FIXME KHS use this to set an executor that uses ThreadPoolUtil#newThreadPool
|
||||
public FhirValidator setExecutorService(ExecutorService theExecutorService) {
|
||||
myExecutorService = theExecutorService;
|
||||
return this;
|
||||
|
|
|
@ -314,7 +314,6 @@ public abstract class BaseValidatingInterceptor<T> extends ValidationResultEnric
|
|||
if (myValidator != null) {
|
||||
fhirValidator = myValidator;
|
||||
} else {
|
||||
// FIXME KHS this is our validator
|
||||
fhirValidator = theRequestDetails.getServer().getFhirContext().newValidator();
|
||||
if (myValidatorModules != null) {
|
||||
for (IValidatorModule next : myValidatorModules) {
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<!-- FIXME KHS remove jpa stuff from here -->
|
||||
<!-- TODO KHS remove jpa stuff from here -->
|
||||
<dependency>
|
||||
<groupId>ca.uhn.hapi.fhir</groupId>
|
||||
<artifactId>hapi-fhir-jpaserver-model</artifactId>
|
||||
|
|
Loading…
Reference in New Issue