forked from Raxa/raxacore
-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-3893 | Enhancement to raise Radiology atomfeed events on save of …
…concept with class Radiology/Imaging Procedure (#264) * BAH-3892 | Support atomfeed test events for concepts with class Test * BAH-3893 | Support atomfeed radiology events for concepts with class Radiology/Imaging Procedure
- Loading branch information
Showing
5 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
5 changes: 4 additions & 1 deletion
5
...api/src/main/java/org/bahmni/module/referencedata/labconcepts/contract/RadiologyTest.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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
package org.bahmni.module.referencedata.labconcepts.contract; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
public class RadiologyTest extends Resource { | ||
public static final String RADIOLOGY_TEST_CONCEPT_CLASS = "Radiology"; | ||
public static final List<String> RADIOLOGY_TEST_CONCEPT_CLASSES = Arrays.asList("Radiology", "Radiology/Imaging Procedure"); | ||
public static final String RADIOLOGY_TEST_PARENT_CONCEPT_NAME = "Radiology"; | ||
} |
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