All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencds.cqf.common.config.FhirTesterConfig Maven / Gradle / Ivy

package org.opencds.cqf.common.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

import ca.uhn.fhir.to.FhirTesterMvcConfig;
import ca.uhn.fhir.to.TesterConfig;

//@formatter:off
/**
 * This spring config file configures the web testing module. It serves two
 * purposes:
 * 1. It imports FhirTesterMvcConfig, which is the spring config for the
 *    tester itself
 * 2. It tells the tester which server(s) to talk to, via the testerConfig()
 *    method below
 */
@Configuration
@Import(FhirTesterMvcConfig.class)
public class FhirTesterConfig {

    /**
     * This bean tells the testing webpage which servers it should configure itself
     * to communicate with. In this example we configure it to talk to the local
     * server, as well as one public server. If you are creating a project to
     * deploy somewhere else, you might choose to only put your own server's
     * address here.
     *
     * Note the use of the ${serverBase} variable below. This will be replaced with
     * the base URL as reported by the server itself. Often for a simple Tomcat
     * (or other container) installation, this will end up being something
     * like "http://localhost:8080/hapi-fhir-jpaserver-starter". If you are
     * deploying your server to a place with a fully qualified domain name,
     * you might want to use that instead of using the variable.
     */
    @Bean
    public TesterConfig testerConfig() {
        TesterConfig retVal = new TesterConfig();
        retVal
                .addServer()
                .withId(HapiProperties.getServerId())
                .withFhirVersion(HapiProperties.getFhirVersion())
                .withBaseUrl(HapiProperties.getServerAddress())
                .withName(HapiProperties.getServerName());
        retVal.setRefuseToFetchThirdPartyUrls(HapiProperties.getTesterConfigRefustToFetchThirdPartyUrls());
        return retVal;
    }

}
//@formatter:on




© 2015 - 2025 Weber Informatics LLC | Privacy Policy