use of no.seres.xsd.nav.inntektsmelding_m._20181211.XMLInntekt in project testnorge by navikt.
the class InntektDTO method toXmlElement.
@Override
public XMLInntekt toXmlElement() {
ObjectFactory factory = new ObjectFactory();
XMLInntekt xmlInntekt = factory.createXMLInntekt();
xmlInntekt.setAarsakVedEndring(factory.createXMLInntektAarsakVedEndring(aarsakVedEndring));
xmlInntekt.setBeloep(factory.createXMLInntektBeloep(beloep != null ? BigDecimal.valueOf(beloep) : null));
return xmlInntekt;
}
Aggregations