no.nav.hendelse.virksomhet.person.sammenslaatt.v1.XMLPerson 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.03.04 at 08:20:44 AM UTC
//
package no.nav.hendelse.virksomhet.person.sammenslaatt.v1;
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 Person complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Person">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ident" type="{http://nav.no/hendelse/virksomhet/person/sammenslaatt/v1}Identifikator"/>
* <element name="aktoerId" type="{http://nav.no/hendelse/virksomhet/person/sammenslaatt/v1}Identifikator"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Person", propOrder = {
"ident",
"aktoerId"
})
public class XMLPerson {
@XmlElement(required = true)
protected String ident;
@XmlElement(required = true)
protected String aktoerId;
/**
* Default no-arg constructor
*
*/
public XMLPerson() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public XMLPerson(final String ident, final String aktoerId) {
this.ident = ident;
this.aktoerId = aktoerId;
}
/**
* Gets the value of the ident property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdent() {
return ident;
}
/**
* Sets the value of the ident property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdent(String value) {
this.ident = value;
}
/**
* Gets the value of the aktoerId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAktoerId() {
return aktoerId;
}
/**
* Sets the value of the aktoerId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAktoerId(String value) {
this.aktoerId = value;
}
public XMLPerson withIdent(String value) {
setIdent(value);
return this;
}
public XMLPerson withAktoerId(String value) {
setAktoerId(value);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy