generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored to create more generic helper functions and move logic to …
…transformation method
- Loading branch information
1 parent
04693bf
commit fd8c958
Showing
7 changed files
with
66 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 0 additions & 46 deletions
46
...src/main/java/gov/hhs/cdc/trustedintermediary/external/hapi/HapiOrderConverterHelper.java
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
etor/src/main/java/gov/hhs/cdc/trustedintermediary/hl7fhir/FhirValuesHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package gov.hhs.cdc.trustedintermediary.hl7fhir; | ||
|
||
import java.util.List; | ||
import org.hl7.fhir.r4.model.Coding; | ||
|
||
public class FhirValuesHelper { | ||
|
||
public static final List<Coding> CODING_LIST = | ||
List.of( | ||
new Coding( | ||
"http://terminology.hl7.org/CodeSystem/v3-RoleCode", "MTH", "mother")); | ||
|
||
public static final Coding OML_CODING = | ||
new Coding( | ||
"http://terminology.hl7.org/CodeSystem/v2-0003", | ||
"O21", | ||
"OML - Laboratory order"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters