use of se.inera.intyg.webcert.web.web.controller.integration.dto.PrepareRedirectToIntyg in project webcert by sklintyg.
the class IntegrationServiceImpl method createPrepareRedirectToIntyg.
// private scope
private PrepareRedirectToIntyg createPrepareRedirectToIntyg(String intygTyp, String intygId, boolean isUtkast) {
PrepareRedirectToIntyg prepareRedirectToIntyg = new PrepareRedirectToIntyg();
prepareRedirectToIntyg.setIntygTyp(intygTyp);
prepareRedirectToIntyg.setIntygId(intygId);
prepareRedirectToIntyg.setUtkast(isUtkast);
return prepareRedirectToIntyg;
}
Aggregations