Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.pbm.ampl.fhir.marshall;
import org.apache.commons.lang3.NotImplementedException;
/**
* Currently a placeholder until Build 2.
*
*
* @author Ian Meinert
*
*/
public class FhirMarshall {
/**
* Default constructor for the static methods.
*/
private FhirMarshall() {
// Not used
}
/**
* This method marshals the data from JSon format to a server readable FHIR.
*/
public static void marshal() {
throw new NotImplementedException("Fhir marshalling is not yet implemented");
}
}