package at.gv.util.xsd.szr_v4; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
Java-Klasse für anonymous complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PersonInfo" type="{urn:SZRServices}PersonInfoType"/>
* <element name="InsertERnP" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"personInfo",
"insertERnP"
})
@XmlRootElement(name = "GetStammzahlEncrypted")
public class GetStammzahlEncrypted {
@XmlElement(name = "PersonInfo", required = true)
protected PersonInfoType personInfo;
@XmlElement(name = "InsertERnP")
protected Boolean insertERnP;
/**
* Ruft den Wert der personInfo-Eigenschaft ab.
*
* @return
* possible object is
* {@link PersonInfoType }
*
*/
public PersonInfoType getPersonInfo() {
return personInfo;
}
/**
* Legt den Wert der personInfo-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PersonInfoType }
*
*/
public void setPersonInfo(PersonInfoType value) {
this.personInfo = value;
}
/**
* Ruft den Wert der insertERnP-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isInsertERnP() {
return insertERnP;
}
/**
* Legt den Wert der insertERnP-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInsertERnP(Boolean value) {
this.insertERnP = value;
}
}