Search in sources :

Example 1 with XMLEndringIRefusjonsListe

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;
}
Also used : ObjectFactory(no.seres.xsd.nav.inntektsmelding_m._20181211.ObjectFactory) XMLEndringIRefusjonsListe(no.seres.xsd.nav.inntektsmelding_m._20181211.XMLEndringIRefusjonsListe) XMLRefusjon(no.seres.xsd.nav.inntektsmelding_m._20181211.XMLRefusjon)

Aggregations

ObjectFactory (no.seres.xsd.nav.inntektsmelding_m._20181211.ObjectFactory)1 XMLEndringIRefusjonsListe (no.seres.xsd.nav.inntektsmelding_m._20181211.XMLEndringIRefusjonsListe)1 XMLRefusjon (no.seres.xsd.nav.inntektsmelding_m._20181211.XMLRefusjon)1