001package org.hl7.fhir.convertors.conv14_50.resources14_50;
002
003import org.hl7.fhir.convertors.context.ConversionContext14_50;
004import org.hl7.fhir.convertors.conv14_50.datatypes14_50.primitivetypes14_50.Base64Binary14_50;
005import org.hl7.fhir.convertors.conv14_50.datatypes14_50.primitivetypes14_50.Code14_50;
006import org.hl7.fhir.exceptions.FHIRException;
007
008public class Binary14_50 {
009  public static org.hl7.fhir.r5.model.Binary convertBinary(org.hl7.fhir.dstu2016may.model.Binary src) throws FHIRException {
010    if (src == null || src.isEmpty()) return null;
011    org.hl7.fhir.r5.model.Binary tgt = new org.hl7.fhir.r5.model.Binary();
012    ConversionContext14_50.INSTANCE.getVersionConvertor_14_50().copyResource(src, tgt);
013    if (src.hasContentTypeElement()) tgt.setContentTypeElement(Code14_50.convertCode(src.getContentTypeElement()));
014    if (src.hasContent()) tgt.setContent(src.getContent());
015    return tgt;
016  }
017
018  public static org.hl7.fhir.dstu2016may.model.Binary convertBinary(org.hl7.fhir.r5.model.Binary src) throws FHIRException {
019    if (src == null || src.isEmpty()) return null;
020    org.hl7.fhir.dstu2016may.model.Binary tgt = new org.hl7.fhir.dstu2016may.model.Binary();
021    ConversionContext14_50.INSTANCE.getVersionConvertor_14_50().copyResource(src, tgt);
022    if (src.hasContentTypeElement()) tgt.setContentTypeElement(Code14_50.convertCode(src.getContentTypeElement()));
023    tgt.setContentElement(Base64Binary14_50.convertBase64Binary(src.getContentElement()));
024    return tgt;
025  }
026}