001package org.hl7.fhir.dstu3.formats;
002
003import java.io.ByteArrayOutputStream;
004
005import org.hl7.fhir.dstu3.model.Resource;
006
007public class JsonParser {
008
009        public void compose(ByteArrayOutputStream theBs, Resource theIg) {
010                throw new UnsupportedOperationException();
011        }
012
013  public Resource parse(byte[] theByteArray) {
014    throw new UnsupportedOperationException();
015  }
016
017}