-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce SubjectProviderOptions and associate it with MeasureEvaluat…
…ionOptions. Use conditional logic in R4RepositorySubjectProvider to choose whether to perform a chained partOf query.
- Loading branch information
1 parent
eeaa0e0
commit e7deda8
Showing
7 changed files
with
58 additions
and
14 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
16 changes: 16 additions & 0 deletions
16
cqf-fhir-cr/src/main/java/org/opencds/cqf/fhir/cr/measure/SubjectProviderOptions.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,16 @@ | ||
package org.opencds.cqf.fhir.cr.measure; | ||
|
||
// LUKETODO: javadoc | ||
public class SubjectProviderOptions { | ||
|
||
private boolean isPartOfEnabled; | ||
|
||
public boolean isPartOfEnabled() { | ||
return isPartOfEnabled; | ||
} | ||
|
||
public SubjectProviderOptions setPartOfEnabled(boolean thePartOfEnabled) { | ||
isPartOfEnabled = thePartOfEnabled; | ||
return this; | ||
} | ||
} |
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
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