From bc8133976541a38ed23288888057e93962ef4210 Mon Sep 17 00:00:00 2001 From: Joyce Quach Date: Wed, 18 Oct 2023 15:49:37 -0400 Subject: [PATCH 1/3] Fix typo --- .../QuestionnaireResponseSearchParameterInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/hl7/davinci/ehrserver/interceptor/QuestionnaireResponseSearchParameterInterceptor.java b/src/main/java/org/hl7/davinci/ehrserver/interceptor/QuestionnaireResponseSearchParameterInterceptor.java index 143760f..76d4d1f 100644 --- a/src/main/java/org/hl7/davinci/ehrserver/interceptor/QuestionnaireResponseSearchParameterInterceptor.java +++ b/src/main/java/org/hl7/davinci/ehrserver/interceptor/QuestionnaireResponseSearchParameterInterceptor.java @@ -35,7 +35,7 @@ public QuestionnaireResponseSearchParameterInterceptor(FhirContext ctx, String s } @Hook(Pointcut.SERVER_INCOMING_REQUEST_PRE_PROCESSED) - public void createQRContextSearchParamter(FhirContext ctx, String serverAddress) { + public void createQRContextSearchParameter(FhirContext ctx, String serverAddress) { if(!bQRContextSPCreated) { bQRContextSPCreated = true; SearchParameter sp = new SearchParameter(); From 6c076748ca62c98b9bc5acbdf94aa64533807835 Mon Sep 17 00:00:00 2001 From: Joyce Quach Date: Wed, 18 Oct 2023 17:54:24 -0400 Subject: [PATCH 2/3] Update .gitignore after building project in IntelliJ --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 384f937..ccf858b 100644 --- a/.gitignore +++ b/.gitignore @@ -126,6 +126,9 @@ Temporary Items ### Gradle ### .gradle build/ +gradle/ +gradlew +gradlew.bat # Ignore Gradle GUI config gradle-app.setting From 414dc90b55040be4cc881b5997edf09d4979a674 Mon Sep 17 00:00:00 2001 From: Joyce Quach Date: Mon, 23 Oct 2023 11:57:14 -0400 Subject: [PATCH 3/3] Add Run Configurations and store them in .run --- .run/Boot Run.run.xml | 21 +++++++++++++++++++++ .run/Clean.run.xml | 21 +++++++++++++++++++++ .run/Load Data.run.xml | 21 +++++++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 .run/Boot Run.run.xml create mode 100644 .run/Clean.run.xml create mode 100644 .run/Load Data.run.xml diff --git a/.run/Boot Run.run.xml b/.run/Boot Run.run.xml new file mode 100644 index 0000000..dd450a8 --- /dev/null +++ b/.run/Boot Run.run.xml @@ -0,0 +1,21 @@ + + + + + + + true + true + false + + + \ No newline at end of file diff --git a/.run/Clean.run.xml b/.run/Clean.run.xml new file mode 100644 index 0000000..4c57fcf --- /dev/null +++ b/.run/Clean.run.xml @@ -0,0 +1,21 @@ + + + + + + + true + true + false + + + \ No newline at end of file diff --git a/.run/Load Data.run.xml b/.run/Load Data.run.xml new file mode 100644 index 0000000..4064d41 --- /dev/null +++ b/.run/Load Data.run.xml @@ -0,0 +1,21 @@ + + + + + + + true + true + false + + + \ No newline at end of file