use of se.inera.intyg.clinicalprocess.healthcond.certificate.listrelationsforcertificate.v1.ListRelationsForCertificateType in project webcert by sklintyg.
the class IntygRelationHelperImpl method getRelationsFromIntygstjanst.
private ListRelationsForCertificateResponseType getRelationsFromIntygstjanst(List<String> intygIds) {
if (intygIds == null || intygIds.size() == 0) {
return new ListRelationsForCertificateResponseType();
}
ListRelationsForCertificateType request = new ListRelationsForCertificateType();
request.getIntygsId().addAll(intygIds);
return listRelationsForCertificateResponderInterface.listRelationsForCertificate(logicalAddress, request);
}
Aggregations