package ca.uhn.fhirtest.config; import org.springframework.beans.factory.annotation.Autowire; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import ca.uhn.fhir.context.FhirVersionEnum; import ca.uhn.fhir.to.FhirTesterMvcConfig; import ca.uhn.fhir.to.TesterConfig; import ca.uhn.fhirtest.mvc.SubscriptionPlaygroundController; //@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) //@ComponentScan(basePackages = "ca.uhn.fhirtest.mvc") @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-example". 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("hapi_dev") .withFhirVersion(FhirVersionEnum.DSTU2) .withBaseUrl("http://fhirtest.uhn.ca/baseDstu2") .withName("UHN/HAPI Server (DSTU2 FHIR)") .addServer() .withId("home_21") .withFhirVersion(FhirVersionEnum.DSTU3) .withBaseUrl("http://fhirtest.uhn.ca/baseDstu3") .withName("UHN/HAPI Server (STU3 FHIR)") .addServer() .withId("home") .withFhirVersion(FhirVersionEnum.DSTU1) .withBaseUrl("http://fhirtest.uhn.ca/baseDstu1") .withName("UHN/HAPI Server (DSTU1 FHIR)") // .addServer() // .withId("tdl_d2") // .withFhirVersion(FhirVersionEnum.DSTU2) // .withBaseUrl("http://fhirtest.uhn.ca/testDataLibraryDstu2") // .withName("Test Data Library (DSTU2 FHIR)") // .allowsApiKey() // .addServer() // .withId("tdl_d3") // .withFhirVersion(FhirVersionEnum.DSTU3) // .withBaseUrl("http://fhirtest.uhn.ca/testDataLibraryStu3") // .withName("Test Data Library (DSTU3 FHIR)") // .allowsApiKey() .addServer() .withId("hi2") .withFhirVersion(FhirVersionEnum.DSTU2) .withBaseUrl("http://fhir2.healthintersections.com.au/open") .withName("Health Intersections (DSTU2 FHIR)") .addServer() .withId("hi3") .withFhirVersion(FhirVersionEnum.DSTU3) .withBaseUrl("http://fhir3.healthintersections.com.au/open") .withName("Health Intersections (STU3 FHIR)") .addServer() .withId("spark2") .withFhirVersion(FhirVersionEnum.DSTU2) .withBaseUrl("http://spark-dstu2.furore.com/fhir") .withName("Spark - Furore (DSTU2 FHIR)"); return retVal; } @Bean(autowire=Autowire.BY_TYPE) public SubscriptionPlaygroundController subscriptionPlaygroundController() { return new SubscriptionPlaygroundController(); } } //@formatter:on