All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generated.XMLSykmeldt Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.07.11 at 04:35:47 AM UTC 
//


package generated;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Sykmeldt complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Sykmeldt">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="sykmeldtNavn" type="{}Navn"/>
 *         <element name="sykmeldtFoedselsnummer" type="{}IDnummerPerson"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Sykmeldt", propOrder = { "sykmeldtNavn", "sykmeldtFoedselsnummer" }) public class XMLSykmeldt { @XmlElement(required = true) protected String sykmeldtNavn; @XmlElement(required = true) protected String sykmeldtFoedselsnummer; /** * Default no-arg constructor * */ public XMLSykmeldt() { super(); } /** * Fully-initialising value constructor * */ public XMLSykmeldt(final String sykmeldtNavn, final String sykmeldtFoedselsnummer) { this.sykmeldtNavn = sykmeldtNavn; this.sykmeldtFoedselsnummer = sykmeldtFoedselsnummer; } /** * Gets the value of the sykmeldtNavn property. * * @return * possible object is * {@link String } * */ public String getSykmeldtNavn() { return sykmeldtNavn; } /** * Sets the value of the sykmeldtNavn property. * * @param value * allowed object is * {@link String } * */ public void setSykmeldtNavn(String value) { this.sykmeldtNavn = value; } /** * Gets the value of the sykmeldtFoedselsnummer property. * * @return * possible object is * {@link String } * */ public String getSykmeldtFoedselsnummer() { return sykmeldtFoedselsnummer; } /** * Sets the value of the sykmeldtFoedselsnummer property. * * @param value * allowed object is * {@link String } * */ public void setSykmeldtFoedselsnummer(String value) { this.sykmeldtFoedselsnummer = value; } public XMLSykmeldt withSykmeldtNavn(String value) { setSykmeldtNavn(value); return this; } public XMLSykmeldt withSykmeldtFoedselsnummer(String value) { setSykmeldtFoedselsnummer(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy