use of se.riv.infrastructure.directory.privatepractitioner.v1.LegitimeradYrkesgruppType in project webcert by sklintyg.
the class ElegWebCertUserDetailsService method decorateWebCertUserWithLegitimeradeYrkesgrupper.
private void decorateWebCertUserWithLegitimeradeYrkesgrupper(HoSPersonType hosPerson, WebCertUser webCertUser) {
List<String> legitimeradeYrkesgrupper = new ArrayList<>();
for (LegitimeradYrkesgruppType ly : hosPerson.getLegitimeradYrkesgrupp()) {
legitimeradeYrkesgrupper.add(ly.getNamn());
}
webCertUser.setLegitimeradeYrkesgrupper(legitimeradeYrkesgrupper);
}
Aggregations