org.hl7.fhir.r4.hapi.ctx.FhirServerR4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hapi-fhir-structures-r4 Show documentation
Show all versions of hapi-fhir-structures-r4 Show documentation
Builds the hapi fhir r4. Requires hapi-fhir-base, hapi-fhir-utilities
and hapi-fhir-r4 be built first and be excluded from any other poms requiring it.
package org.hl7.fhir.r4.hapi.ctx;
import ca.uhn.fhir.rest.api.server.IFhirVersionServer;
import ca.uhn.fhir.rest.server.RestfulServer;
import ca.uhn.fhir.rest.server.provider.ServerCapabilityStatementProvider;
public class FhirServerR4 implements IFhirVersionServer {
@Override
public ServerCapabilityStatementProvider createServerConformanceProvider(RestfulServer theServer) {
return new ServerCapabilityStatementProvider(theServer);
}
}