package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Angaben, die für die Suche in allen Registern, gleich welcher Art, * verwendet werden können (siehe Suchdaten, ). * *
Java class for TSuchdaten complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TSuchdaten">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Vornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Ereignistag" type="{http://www.fh-giessen.de/epr/Container/v1}TZeitraumTag" minOccurs="0"/>
* <element name="Eintragsjahr" type="{http://www.fh-giessen.de/epr/Container/v1}TZeitraumJahr" minOccurs="0"/>
* <element name="Standesamt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="StAmtNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Ereignisort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Phonetisch" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TSuchdaten", propOrder = {
"name",
"vornamen",
"ereignistag",
"eintragsjahr",
"standesamt",
"stAmtNummer",
"ereignisort",
"phonetisch"
})
@XmlSeeAlso({
TGSuchdaten.class,
TELSuchdaten.class,
TSSuchdaten.class
})
public class TSuchdaten {
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "Vornamen")
protected String vornamen;
@XmlElement(name = "Ereignistag")
protected TZeitraumTag ereignistag;
@XmlElement(name = "Eintragsjahr")
protected TZeitraumJahr eintragsjahr;
@XmlElement(name = "Standesamt")
protected String standesamt;
@XmlElement(name = "StAmtNummer")
protected String stAmtNummer;
@XmlElement(name = "Ereignisort")
protected String ereignisort;
@XmlElement(name = "Phonetisch")
protected Boolean phonetisch;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the vornamen property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVornamen() {
return vornamen;
}
/**
* Sets the value of the vornamen property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVornamen(String value) {
this.vornamen = value;
}
/**
* Gets the value of the ereignistag property.
*
* @return
* possible object is
* {@link TZeitraumTag }
*
*/
public TZeitraumTag getEreignistag() {
return ereignistag;
}
/**
* Sets the value of the ereignistag property.
*
* @param value
* allowed object is
* {@link TZeitraumTag }
*
*/
public void setEreignistag(TZeitraumTag value) {
this.ereignistag = value;
}
/**
* Gets the value of the eintragsjahr property.
*
* @return
* possible object is
* {@link TZeitraumJahr }
*
*/
public TZeitraumJahr getEintragsjahr() {
return eintragsjahr;
}
/**
* Sets the value of the eintragsjahr property.
*
* @param value
* allowed object is
* {@link TZeitraumJahr }
*
*/
public void setEintragsjahr(TZeitraumJahr value) {
this.eintragsjahr = value;
}
/**
* Gets the value of the standesamt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStandesamt() {
return standesamt;
}
/**
* Sets the value of the standesamt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStandesamt(String value) {
this.standesamt = value;
}
/**
* Gets the value of the stAmtNummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStAmtNummer() {
return stAmtNummer;
}
/**
* Sets the value of the stAmtNummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStAmtNummer(String value) {
this.stAmtNummer = value;
}
/**
* Gets the value of the ereignisort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEreignisort() {
return ereignisort;
}
/**
* Sets the value of the ereignisort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEreignisort(String value) {
this.ereignisort = value;
}
/**
* Gets the value of the phonetisch property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPhonetisch() {
return phonetisch;
}
/**
* Sets the value of the phonetisch property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPhonetisch(Boolean value) {
this.phonetisch = value;
}
}