use of org.ehrbase.fhirbridge.ehr.opt.koerpergewichtcomposition.definition.KoerpergewichtKategorieElement in project fhir-bridge by ehrbase.
the class BodyWeightCompositionConverter method mapKategorie.
private void mapKategorie(KoerpergewichtComposition composition, Observation resource) {
List<KoerpergewichtKategorieElement> list = new ArrayList<>();
for (CodeableConcept category : resource.getCategory()) {
for (Coding coding : category.getCoding()) {
KoerpergewichtKategorieElement koerpergewichtTestKategorieElement = new KoerpergewichtKategorieElement();
koerpergewichtTestKategorieElement.setValue(coding.getCode());
list.add(koerpergewichtTestKategorieElement);
}
}
composition.setKategorie(list);
}
Aggregations