use of se.riv.clinicalprocess.healthcond.certificate.types.v3.Statuskod in project webcert by sklintyg.
the class IntygDraftsConverterTest method buildIntygsStatus.
private IntygsStatus buildIntygsStatus(String statuskod, LocalDateTime timestamp) {
IntygsStatus status = new IntygsStatus();
status.setStatus(new Statuskod());
status.getStatus().setCode(statuskod);
status.setTidpunkt(timestamp);
return status;
}
Aggregations