-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OP-107 FHIR service layer #1343
base: develop
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,42 @@ | |||
package org.isf.fhir; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR; please add the standard license headers to each file.
Hi @Th0rst3nH thanks for the PR! Could you please give some documentation on how it is meant to be used in the rest of the application? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be under package org.isf.fhir.service
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes can do :)
Yes, this is basically just a simple string json converter to the standard FHIR Message. What kind of documentation do you need? Please see the test how to use it. |
@@ -0,0 +1,35 @@ | |||
package org.isf.fhir.service; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add missing license header
@@ -0,0 +1,35 @@ | |||
package org.isf.fhir.service; | |||
|
|||
import static org.junit.jupiter.api.Assertions.*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Project standards are to enumerate all imports and not use package level wildcards; thanks
OP-107 Created FHIR Message Layer