ee.xtee6.arireg.detail.DetailandmedV5KpPandipidaja Maven / Gradle / Ivy
package ee.xtee6.arireg.detail;
import java.io.Serializable;
import java.time.LocalDate;
import ee.datel.client.utils.AdapterForLocalDate;
import ee.datel.client.utils.AdapterForLong;
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 detailandmed_v5_kp_pandipidaja complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "detailandmed_v5_kp_pandipidaja", propOrder = {
"kirjeId",
"kaardiPiirkond",
"kaardiNr",
"kaardiTyyp",
"kandeNr",
"pidajaIsikuliik",
"pidajaNimi",
"pidajaKood",
"pidajaRiik",
"pidajaRiikTekstina",
"pidajaAsukohtEhak",
"pidajaAsukohtEhakTekstina",
"pidajaMurdosa",
"algusKpv",
"loppKpv"
})
@Generated(value = "com.sun.tools.ws.wscompile.WsimportTool", comments = "XML-WS Tools 4.0.2", date = "2024-10-29T13:15:31+02:00")
public class DetailandmedV5KpPandipidaja
implements Serializable
{
private static final long serialVersionUID = -1L;
@XmlElement(name = "kirje_id", type = String.class)
@XmlJavaTypeAdapter(AdapterForLong.class)
@XmlSchemaType(name = "integer")
protected Long kirjeId;
@XmlElement(name = "kaardi_piirkond", type = String.class)
@XmlJavaTypeAdapter(AdapterForLong.class)
@XmlSchemaType(name = "integer")
protected Long kaardiPiirkond;
@XmlElement(name = "kaardi_nr", type = String.class)
@XmlJavaTypeAdapter(AdapterForLong.class)
@XmlSchemaType(name = "integer")
protected Long kaardiNr;
@XmlElement(name = "kaardi_tyyp")
protected String kaardiTyyp;
@XmlElement(name = "kande_nr", type = String.class)
@XmlJavaTypeAdapter(AdapterForLong.class)
@XmlSchemaType(name = "integer")
protected Long kandeNr;
@XmlElement(name = "pidaja_isikuliik")
protected String pidajaIsikuliik;
@XmlElement(name = "pidaja_nimi")
protected String pidajaNimi;
@XmlElement(name = "pidaja_kood")
protected String pidajaKood;
@XmlElement(name = "pidaja_riik")
protected String pidajaRiik;
@XmlElement(name = "pidaja_riik_tekstina")
protected String pidajaRiikTekstina;
@XmlElement(name = "pidaja_asukoht_ehak")
protected String pidajaAsukohtEhak;
@XmlElement(name = "pidaja_asukoht_ehak_tekstina")
protected String pidajaAsukohtEhakTekstina;
@XmlElement(name = "pidaja_murdosa")
protected String pidajaMurdosa;
@XmlElement(name = "algus_kpv", type = String.class)
@XmlJavaTypeAdapter(AdapterForLocalDate.class)
@XmlSchemaType(name = "date")
protected LocalDate algusKpv;
@XmlElement(name = "lopp_kpv", type = String.class)
@XmlJavaTypeAdapter(AdapterForLocalDate.class)
@XmlSchemaType(name = "date")
protected LocalDate loppKpv;
/**
* Gets the value of the kirjeId property.
*
* @return
* possible object is
* {@link String }
*
*/
public Long getKirjeId() {
return kirjeId;
}
/**
* Sets the value of the kirjeId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKirjeId(Long value) {
this.kirjeId = value;
}
/**
* Gets the value of the kaardiPiirkond property.
*
* @return
* possible object is
* {@link String }
*
*/
public Long getKaardiPiirkond() {
return kaardiPiirkond;
}
/**
* Sets the value of the kaardiPiirkond property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKaardiPiirkond(Long value) {
this.kaardiPiirkond = value;
}
/**
* Gets the value of the kaardiNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public Long getKaardiNr() {
return kaardiNr;
}
/**
* Sets the value of the kaardiNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKaardiNr(Long value) {
this.kaardiNr = value;
}
/**
* Gets the value of the kaardiTyyp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKaardiTyyp() {
return kaardiTyyp;
}
/**
* Sets the value of the kaardiTyyp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKaardiTyyp(String value) {
this.kaardiTyyp = value;
}
/**
* Gets the value of the kandeNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public Long getKandeNr() {
return kandeNr;
}
/**
* Sets the value of the kandeNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKandeNr(Long value) {
this.kandeNr = value;
}
/**
* Gets the value of the pidajaIsikuliik property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaIsikuliik() {
return pidajaIsikuliik;
}
/**
* Sets the value of the pidajaIsikuliik property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaIsikuliik(String value) {
this.pidajaIsikuliik = value;
}
/**
* Gets the value of the pidajaNimi property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaNimi() {
return pidajaNimi;
}
/**
* Sets the value of the pidajaNimi property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaNimi(String value) {
this.pidajaNimi = value;
}
/**
* Gets the value of the pidajaKood property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaKood() {
return pidajaKood;
}
/**
* Sets the value of the pidajaKood property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaKood(String value) {
this.pidajaKood = value;
}
/**
* Gets the value of the pidajaRiik property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaRiik() {
return pidajaRiik;
}
/**
* Sets the value of the pidajaRiik property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaRiik(String value) {
this.pidajaRiik = value;
}
/**
* Gets the value of the pidajaRiikTekstina property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaRiikTekstina() {
return pidajaRiikTekstina;
}
/**
* Sets the value of the pidajaRiikTekstina property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaRiikTekstina(String value) {
this.pidajaRiikTekstina = value;
}
/**
* Gets the value of the pidajaAsukohtEhak property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaAsukohtEhak() {
return pidajaAsukohtEhak;
}
/**
* Sets the value of the pidajaAsukohtEhak property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaAsukohtEhak(String value) {
this.pidajaAsukohtEhak = value;
}
/**
* Gets the value of the pidajaAsukohtEhakTekstina property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaAsukohtEhakTekstina() {
return pidajaAsukohtEhakTekstina;
}
/**
* Sets the value of the pidajaAsukohtEhakTekstina property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaAsukohtEhakTekstina(String value) {
this.pidajaAsukohtEhakTekstina = value;
}
/**
* Gets the value of the pidajaMurdosa property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPidajaMurdosa() {
return pidajaMurdosa;
}
/**
* Sets the value of the pidajaMurdosa property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPidajaMurdosa(String value) {
this.pidajaMurdosa = value;
}
/**
* Gets the value of the algusKpv property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getAlgusKpv() {
return algusKpv;
}
/**
* Sets the value of the algusKpv property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlgusKpv(LocalDate value) {
this.algusKpv = value;
}
/**
* Gets the value of the loppKpv property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getLoppKpv() {
return loppKpv;
}
/**
* Sets the value of the loppKpv property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLoppKpv(LocalDate value) {
this.loppKpv = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy