ee.xtee6.kr.dm.KinnistuIsik Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtee6-client-kr Show documentation
Show all versions of xtee6-client-kr Show documentation
Library for XROAD KR service clints
The newest version!
package ee.xtee6.kr.dm;
import java.io.Serializable;
import java.time.LocalDateTime;
import ee.datel.client.utils.AdapterForInteger;
import ee.datel.client.utils.AdapterForLocalDateTime;
import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for KinnistuIsik complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KinnistuIsik", propOrder = {
"eesnimi",
"isikuKoodid",
"isikuLiik",
"isikuLiikID",
"isikuTyyp",
"kodakondsus",
"nimi",
"synniaeg"
})
@Generated(value = "com.sun.tools.ws.wscompile.WsimportTool", comments = "XML-WS Tools 4.0.2", date = "2024-11-22T14:10:52+02:00")
public class KinnistuIsik
implements Serializable
{
private static final long serialVersionUID = -1L;
protected String eesnimi;
@XmlElement(name = "isiku_koodid")
protected ArrayOfIsikuKood isikuKoodid;
@XmlElement(name = "isiku_liik")
protected String isikuLiik;
@XmlElement(name = "isiku_liik_ID", type = String.class)
@XmlJavaTypeAdapter(AdapterForInteger.class)
@XmlSchemaType(name = "int")
protected Integer isikuLiikID;
@XmlElement(name = "isiku_tyyp")
protected String isikuTyyp;
protected String kodakondsus;
protected String nimi;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(AdapterForLocalDateTime.class)
@XmlSchemaType(name = "dateTime")
protected LocalDateTime synniaeg;
/**
* Gets the value of the eesnimi property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEesnimi() {
return eesnimi;
}
/**
* Sets the value of the eesnimi property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEesnimi(String value) {
this.eesnimi = value;
}
/**
* Gets the value of the isikuKoodid property.
*
* @return
* possible object is
* {@link ArrayOfIsikuKood }
*
*/
public ArrayOfIsikuKood getIsikuKoodid() {
return isikuKoodid;
}
/**
* Sets the value of the isikuKoodid property.
*
* @param value
* allowed object is
* {@link ArrayOfIsikuKood }
*
*/
public void setIsikuKoodid(ArrayOfIsikuKood value) {
this.isikuKoodid = value;
}
/**
* Gets the value of the isikuLiik property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsikuLiik() {
return isikuLiik;
}
/**
* Sets the value of the isikuLiik property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsikuLiik(String value) {
this.isikuLiik = value;
}
/**
* Gets the value of the isikuLiikID property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getIsikuLiikID() {
return isikuLiikID;
}
/**
* Sets the value of the isikuLiikID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsikuLiikID(Integer value) {
this.isikuLiikID = value;
}
/**
* Gets the value of the isikuTyyp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsikuTyyp() {
return isikuTyyp;
}
/**
* Sets the value of the isikuTyyp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsikuTyyp(String value) {
this.isikuTyyp = value;
}
/**
* Gets the value of the kodakondsus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKodakondsus() {
return kodakondsus;
}
/**
* Sets the value of the kodakondsus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKodakondsus(String value) {
this.kodakondsus = value;
}
/**
* Gets the value of the nimi property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNimi() {
return nimi;
}
/**
* Sets the value of the nimi property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNimi(String value) {
this.nimi = value;
}
/**
* Gets the value of the synniaeg property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDateTime getSynniaeg() {
return synniaeg;
}
/**
* Sets the value of the synniaeg property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSynniaeg(LocalDateTime value) {
this.synniaeg = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy