Skip to content

Commit

Permalink
refactored project structure and updated AMQP client version
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannes Ulrich committed Feb 6, 2019
1 parent 53f0157 commit b8e89a6
Show file tree
Hide file tree
Showing 22 changed files with 4,319 additions and 0 deletions.
408 changes: 408 additions & 0 deletions src/main/java/de/uzl/itcr/mimic2fhir/Mimic2Fhir.java

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions src/main/java/de/uzl/itcr/mimic2fhir/OutputMode.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/***********************************************************************
Copyright 2018 Stefanie Ververs, University of Lübeck
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
/***********************************************************************/
package de.uzl.itcr.mimic2fhir;

/**
* Output-Mode: Where shall the data go?
* -CONSOLE: Print to console
* -FILE: Print to xml-Files
* -BOTH: Console and file
* -SERVER: Push to a Fhir server
* @author Stefanie Ververs
*
*/
public enum OutputMode {
PRINT_CONSOLE,
PRINT_FILE,
PRINT_BOTH,
PUSH_SERVER
}
Loading

0 comments on commit b8e89a6

Please sign in to comment.