3.7.4. Register the implementations with the Java Services architecture

Create the following text files inside the META-INF/services folder of your resources directory:

  1. net.geoprism.registry.etl.fhir.FhirDataPopulator

  2. net.geoprism.registry.etl.fhir.FhirResourceProcessor

The contents of each text file should be the fully qualified name of the implementation:

com.terraframe.demo.DemoFhirDataPopulator

and

com.terraframe.demo.DemoFhirResourceProcessor

For more information on the Java services architecture see ServiceLoader (Java Platform SE 8).

Last updated