-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAT-7926: Add support for exporting versioned QI-Core 6 measures, inc…
…ludes model validation and packaging. QI-Core 6 export is equivalent to QI-Core 4.1.1. Signed-off-by: Joseph Kotanchik <[email protected]>
- Loading branch information
1 parent
8feee92
commit 205c4ab
Showing
5 changed files
with
26 additions
and
2 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
10 changes: 10 additions & 0 deletions
10
src/main/java/cms/gov/madie/measure/services/QiCore6ModelValidator.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,10 @@ | ||
package cms.gov.madie.measure.services; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
import org.springframework.stereotype.Service; | ||
|
||
@Slf4j | ||
@Service(ServiceConstants.QICORE_6_VALIDATOR) | ||
public class QiCore6ModelValidator extends QiCoreModelValidator { | ||
// Intentionally empty class. QI-Core 6 validation is the same as QI-Core 4.1.1. | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/cms/gov/madie/measure/services/Qicore6PackageService.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,13 @@ | ||
package cms.gov.madie.measure.services; | ||
|
||
import org.springframework.stereotype.Service; | ||
|
||
/** | ||
* Intentionally empty class. QI-Core 6 packaging is the same as QI-Core 4.1.1. | ||
*/ | ||
@Service | ||
public class Qicore6PackageService extends QicorePackageService { | ||
public Qicore6PackageService(BundleService bundleService) { | ||
super(bundleService); | ||
} | ||
} |
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