001package org.hl7.fhir.convertors.conv43_50.resources43_50; 002 003import org.hl7.fhir.convertors.context.ConversionContext43_50; 004import org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50.CodeableConcept43_50; 005import org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50.ContactPoint43_50; 006import org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50.Identifier43_50; 007import org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50.Period43_50; 008import org.hl7.fhir.convertors.conv43_50.datatypes43_50.primitive43_50.Boolean43_50; 009import org.hl7.fhir.convertors.conv43_50.datatypes43_50.special43_50.Reference43_50; 010import org.hl7.fhir.exceptions.FHIRException; 011 012/* 013 Copyright (c) 2011+, HL7, Inc. 014 All rights reserved. 015 016 Redistribution and use in source and binary forms, with or without modification, 017 are permitted provided that the following conditions are met: 018 019 * Redistributions of source code must retain the above copyright notice, this 020 list of conditions and the following disclaimer. 021 * Redistributions in binary form must reproduce the above copyright notice, 022 this list of conditions and the following disclaimer in the documentation 023 and/or other materials provided with the distribution. 024 * Neither the name of HL7 nor the names of its contributors may be used to 025 endorse or promote products derived from this software without specific 026 prior written permission. 027 028 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 029 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 030 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 031 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 032 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 033 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 034 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 035 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 036 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 037 POSSIBILITY OF SUCH DAMAGE. 038 039*/ 040// Generated on Sun, Feb 24, 2019 11:37+1100 for FHIR v4.0.0 041public class OrganizationAffiliation43_50 { 042 043 public static org.hl7.fhir.r5.model.OrganizationAffiliation convertOrganizationAffiliation(org.hl7.fhir.r4b.model.OrganizationAffiliation src) throws FHIRException { 044 if (src == null) 045 return null; 046 org.hl7.fhir.r5.model.OrganizationAffiliation tgt = new org.hl7.fhir.r5.model.OrganizationAffiliation(); 047 ConversionContext43_50.INSTANCE.getVersionConvertor_43_50().copyDomainResource(src, tgt); 048 for (org.hl7.fhir.r4b.model.Identifier t : src.getIdentifier()) 049 tgt.addIdentifier(Identifier43_50.convertIdentifier(t)); 050 if (src.hasActive()) 051 tgt.setActiveElement(Boolean43_50.convertBoolean(src.getActiveElement())); 052 if (src.hasPeriod()) 053 tgt.setPeriod(Period43_50.convertPeriod(src.getPeriod())); 054 if (src.hasOrganization()) 055 tgt.setOrganization(Reference43_50.convertReference(src.getOrganization())); 056 if (src.hasParticipatingOrganization()) 057 tgt.setParticipatingOrganization(Reference43_50.convertReference(src.getParticipatingOrganization())); 058 for (org.hl7.fhir.r4b.model.Reference t : src.getNetwork()) tgt.addNetwork(Reference43_50.convertReference(t)); 059 for (org.hl7.fhir.r4b.model.CodeableConcept t : src.getCode()) 060 tgt.addCode(CodeableConcept43_50.convertCodeableConcept(t)); 061 for (org.hl7.fhir.r4b.model.CodeableConcept t : src.getSpecialty()) 062 tgt.addSpecialty(CodeableConcept43_50.convertCodeableConcept(t)); 063 for (org.hl7.fhir.r4b.model.Reference t : src.getLocation()) tgt.addLocation(Reference43_50.convertReference(t)); 064 for (org.hl7.fhir.r4b.model.Reference t : src.getHealthcareService()) 065 tgt.addHealthcareService(Reference43_50.convertReference(t)); 066 for (org.hl7.fhir.r4b.model.ContactPoint t : src.getTelecom()) 067 tgt.getContactFirstRep().addTelecom(ContactPoint43_50.convertContactPoint(t)); 068 for (org.hl7.fhir.r4b.model.Reference t : src.getEndpoint()) tgt.addEndpoint(Reference43_50.convertReference(t)); 069 return tgt; 070 } 071 072 public static org.hl7.fhir.r4b.model.OrganizationAffiliation convertOrganizationAffiliation(org.hl7.fhir.r5.model.OrganizationAffiliation src) throws FHIRException { 073 if (src == null) 074 return null; 075 org.hl7.fhir.r4b.model.OrganizationAffiliation tgt = new org.hl7.fhir.r4b.model.OrganizationAffiliation(); 076 ConversionContext43_50.INSTANCE.getVersionConvertor_43_50().copyDomainResource(src, tgt); 077 for (org.hl7.fhir.r5.model.Identifier t : src.getIdentifier()) 078 tgt.addIdentifier(Identifier43_50.convertIdentifier(t)); 079 if (src.hasActive()) 080 tgt.setActiveElement(Boolean43_50.convertBoolean(src.getActiveElement())); 081 if (src.hasPeriod()) 082 tgt.setPeriod(Period43_50.convertPeriod(src.getPeriod())); 083 if (src.hasOrganization()) 084 tgt.setOrganization(Reference43_50.convertReference(src.getOrganization())); 085 if (src.hasParticipatingOrganization()) 086 tgt.setParticipatingOrganization(Reference43_50.convertReference(src.getParticipatingOrganization())); 087 for (org.hl7.fhir.r5.model.Reference t : src.getNetwork()) tgt.addNetwork(Reference43_50.convertReference(t)); 088 for (org.hl7.fhir.r5.model.CodeableConcept t : src.getCode()) 089 tgt.addCode(CodeableConcept43_50.convertCodeableConcept(t)); 090 for (org.hl7.fhir.r5.model.CodeableConcept t : src.getSpecialty()) 091 tgt.addSpecialty(CodeableConcept43_50.convertCodeableConcept(t)); 092 for (org.hl7.fhir.r5.model.Reference t : src.getLocation()) tgt.addLocation(Reference43_50.convertReference(t)); 093 for (org.hl7.fhir.r5.model.Reference t : src.getHealthcareService()) 094 tgt.addHealthcareService(Reference43_50.convertReference(t)); 095 for (org.hl7.fhir.r5.model.ExtendedContactDetail t1 : src.getContact()) 096 for (org.hl7.fhir.r5.model.ContactPoint t : t1.getTelecom()) 097 tgt.addTelecom(ContactPoint43_50.convertContactPoint(t)); 098 for (org.hl7.fhir.r5.model.Reference t : src.getEndpoint()) tgt.addEndpoint(Reference43_50.convertReference(t)); 099 return tgt; 100 } 101}