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() {