use of no.seres.xsd.nav.inntektsmelding_m._20181211.XMLEndringIRefusjonsListe in project testnorge by navikt.
the class RefusjonDTO method toXmlElement.
@Override
public XMLRefusjon toXmlElement() {
ObjectFactory factory = new ObjectFactory();
XMLRefusjon xmlRefusjon = factory.createXMLRefusjon();
if (endringIRefusjonListe != null) {
XMLEndringIRefusjonsListe xmlEndringIRefusjonsListe = factory.createXMLEndringIRefusjonsListe();
xmlEndringIRefusjonsListe.withEndringIRefusjon(EndringIRefusjonDTO.convert(endringIRefusjonListe));
xmlRefusjon.withEndringIRefusjonListe(factory.createXMLRefusjonEndringIRefusjonListe(xmlEndringIRefusjonsListe));
}
xmlRefusjon.setRefusjonsbeloepPrMnd(factory.createXMLRefusjonRefusjonsbeloepPrMnd(refusjonsbeloepPrMnd != null ? BigDecimal.valueOf(refusjonsbeloepPrMnd) : null));
xmlRefusjon.setRefusjonsopphoersdato(factory.createXMLRefusjonRefusjonsopphoersdato(refusjonsopphoersdato));
return xmlRefusjon;
}
Aggregations