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

ca.uhn.hapi.fhir.docs.QuickUsage Maven / Gradle / Ivy

/*-
 * #%L
 * HAPI FHIR - Docs
 * %%
 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */
package ca.uhn.hapi.fhir.docs;

import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.model.dstu2.composite.IdentifierDt;
import ca.uhn.fhir.model.dstu2.resource.Patient;
import ca.uhn.fhir.model.dstu2.valueset.AdministrativeGenderEnum;
import ca.uhn.fhir.model.dstu2.valueset.IdentifierUseEnum;
import ca.uhn.fhir.parser.DataFormatException;
import ca.uhn.fhir.rest.annotation.Create;
import ca.uhn.fhir.rest.annotation.RequiredParam;
import ca.uhn.fhir.rest.annotation.ResourceParam;
import ca.uhn.fhir.rest.annotation.Search;
import ca.uhn.fhir.rest.api.MethodOutcome;

import java.io.IOException;
import java.util.List;

public class QuickUsage {

	@SuppressWarnings("unused")
	public static void main(String[] args) throws DataFormatException, IOException {

		Patient patient = new Patient();
		patient.addIdentifier()
				.setUse(IdentifierUseEnum.OFFICIAL)
				.setSystem("urn:fake:mrns")
				.setValue("7000135");
		patient.addIdentifier()
				.setUse(IdentifierUseEnum.SECONDARY)
				.setSystem("urn:fake:otherids")
				.setValue("3287486");

		patient.addName().addFamily("Smith").addGiven("John").addGiven("Q").addSuffix("Junior");

		patient.setGender(AdministrativeGenderEnum.MALE);

		FhirContext ctx = FhirContext.forDstu2();
		String xmlEncoded = ctx.newXmlParser().encodeResourceToString(patient);
		String jsonEncoded = ctx.newJsonParser().encodeResourceToString(patient);

		MyClientInterface client = ctx.newRestfulClient(MyClientInterface.class, "http://foo/fhir");
		IdentifierDt searchParam = new IdentifierDt("urn:someidentifiers", "7000135");
		List clients = client.findPatientsByIdentifier(searchParam);
	}

	public interface MyClientInterface extends IRestfulClient {
		/** A FHIR search */
		@Search
		public List findPatientsByIdentifier(@RequiredParam(name = "identifier") IdentifierDt theIdentifier);

		/** A FHIR create */
		@Create
		public MethodOutcome createPatient(@ResourceParam Patient thePatient);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy