-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Start * Updates * String comparison fixes * Versioned the references from Condition Groupers to RS Groupers * Updated TES Condition Groupers test spreadsheet * Updated TESGeneratePackage operation code * Add author extension to condition groupers * Update TESPackageGenerator.java * Update TESPackageGenerator.java * Removed unnecessary test resources; tes package gen fixes * Fixed failing eRSDTransformer test case * Small fix to DateRoller to work when diff spans new year * Fixed getDaysBetween logic to account for possible year boundary issues * Cleanup * Fixes per review feedback * Various logging and cell read fixes * More changes to incorporate suggested improvements --------- Co-authored-by: c-schuler <[email protected]>
- Loading branch information
Showing
15 changed files
with
694,601 additions
and
15 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
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
18 changes: 18 additions & 0 deletions
18
...src/main/java/org/opencds/cqf/tooling/casereporting/tes/TESPackageGenerateParameters.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,18 @@ | ||
package org.opencds.cqf.tooling.casereporting.tes; | ||
|
||
import org.opencds.cqf.tooling.utilities.IOUtils; | ||
|
||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
public class TESPackageGenerateParameters { | ||
public String version; // -version (-v) | ||
public String releaseLabel; // -releaselabel (-rl) | ||
public String outputPath; // -outputpath (-op) | ||
public String outputFileName; // -outputfilename (-ofn) | ||
public String pathToInputBundle; // -pathtoinputbundle (-ptib) | ||
public String pathToConditionGrouperWorkbook; // -pathToConditionGrouperWorkbook (-ptcgw) | ||
public String pathToConditionCodeValueSet; // -pathToConditionCodeValueSet (-ptccvs) | ||
public Set<IOUtils.Encoding> outputFileEncodings; // -encoding (-e) | ||
public boolean writeConditionGroupers; // -writeconditiongroupers (-wcg) | ||
} |
Oops, something went wrong.