-
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.
Merge pull request #750 from MeasureAuthoringTool/feature/mat-7926-ad…
…d-qicore6-export-support MAT-7926: Add support for exporting versioned QI-Core 6 measures, includes model validation and packaging.
- Loading branch information
Showing
5 changed files
with
24 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. | ||
} |
11 changes: 11 additions & 0 deletions
11
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,11 @@ | ||
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