-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAT-7243: Expose getter methods that wrap the Measure Narrative text …
…in CSS, aka human readable, and return the result as a String so that it can be accessed independently of the Bundle.
- Loading branch information
1 parent
59ec709
commit 7cd8c56
Showing
5 changed files
with
460 additions
and
340 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
5 changes: 5 additions & 0 deletions
5
src/main/java/gov/cms/madie/packaging/utils/PackagingUtility.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,8 +1,13 @@ | ||
package gov.cms.madie.packaging.utils; | ||
|
||
import gov.cms.madie.packaging.exceptions.InternalServerException; | ||
import org.hl7.fhir.r4.model.Bundle; | ||
|
||
public interface PackagingUtility { | ||
|
||
byte[] getZipBundle(Object export, String exportFileName) throws InternalServerException; | ||
|
||
String getHumanReadableWithCSS(Bundle measureBundle); | ||
|
||
String getHumanReadableWithCSS(String measureBundleJson); | ||
} |
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
4 changes: 1 addition & 3 deletions
4
src/main/java/gov/cms/madie/packaging/utils/qicore6/PackagingUtilityImpl.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,7 +1,5 @@ | ||
package gov.cms.madie.packaging.utils.qicore6; | ||
|
||
/** | ||
* QI-Core 6.0.0 matches packaging requirements of QICore v4.1.1 | ||
*/ | ||
/** QI-Core 6.0.0 matches packaging requirements of QICore v4.1.1 */ | ||
public class PackagingUtilityImpl | ||
extends gov.cms.madie.packaging.utils.qicore411.PackagingUtilityImpl {} |
Oops, something went wrong.