use of se.riv.infrastructure.directory.privatepractitioner.v1.BefattningType in project webcert by sklintyg.
the class ElegWebCertUserDetailsService method decorateWebCertUserWithBefattningar.
private void decorateWebCertUserWithBefattningar(HoSPersonType hosPerson, WebCertUser webCertUser) {
List<String> befattningar = new ArrayList<>();
for (BefattningType bt : hosPerson.getBefattning()) {
befattningar.add(bt.getNamn());
}
webCertUser.setBefattningar(befattningar);
}
Aggregations