-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#513: Added a JXSON format option to support using the Jackson serial…
…izer to produce JSON output.
- Loading branch information
1 parent
aebe22c
commit efcdc64
Showing
4 changed files
with
71 additions
and
3 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
14 changes: 14 additions & 0 deletions
14
...-to-elm/src/main/java/org/cqframework/cql/cql2elm/model/serialization/LibraryWrapper.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,14 @@ | ||
package org.cqframework.cql.cql2elm.model.serialization; | ||
|
||
import org.hl7.elm.r1.Library; | ||
|
||
public class LibraryWrapper { | ||
private Library library; | ||
public Library getLibrary() { | ||
return this.library; | ||
} | ||
|
||
public void setLibrary(Library library) { | ||
this.library = library; | ||
} | ||
} |
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