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="GetBPKZPVRequest" type="{urn:SZRServices}GetBPKZPVRequestType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "getBPKZPVRequest" }) @XmlRootElement(name = "GetBPKZPV") public class GetBPKZPV { @XmlElement(name = "GetBPKZPVRequest", required = true) protected GetBPKZPVRequestType getBPKZPVRequest; /** * Ruft den Wert der getBPKZPVRequest-Eigenschaft ab. * * @return * possible object is * {@link GetBPKZPVRequestType } * */ public GetBPKZPVRequestType getGetBPKZPVRequest() { return getBPKZPVRequest; } /** * Legt den Wert der getBPKZPVRequest-Eigenschaft fest. * * @param value * allowed object is * {@link GetBPKZPVRequestType } * */ public void setGetBPKZPVRequest(GetBPKZPVRequestType value) { this.getBPKZPVRequest = value; } }