From 74ab9a779c5bed5c0c503d8566ff0d9dbb45a24e Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 21 Nov 2014 11:18:41 -0500 Subject: [PATCH] More tutorial work --- .../example/ex1/Example02_PatientResourceProvider.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hapi-fhir-tutorial/simple-server/src/main/java/ca/uhn/fhir/example/ex1/Example02_PatientResourceProvider.java b/hapi-fhir-tutorial/simple-server/src/main/java/ca/uhn/fhir/example/ex1/Example02_PatientResourceProvider.java index da1e3948065..095d65b008b 100644 --- a/hapi-fhir-tutorial/simple-server/src/main/java/ca/uhn/fhir/example/ex1/Example02_PatientResourceProvider.java +++ b/hapi-fhir-tutorial/simple-server/src/main/java/ca/uhn/fhir/example/ex1/Example02_PatientResourceProvider.java @@ -19,7 +19,12 @@ import ca.uhn.fhir.rest.server.exceptions.ResourceNotFoundException; public class Example02_PatientResourceProvider implements IResourceProvider { private Map myPatients = new HashMap(); - + + /** Constructor */ + public Example02_PatientResourceProvider() { +// Patient + } + /** All Resource Providers must implement this method */ @Override public Class getResourceType() {