package at.gv.util.xsd.mis.usp_v2.eai.syncmsgs; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; 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="Mandates" type="{http://eai.brz.gv.at/services/vdds/sync-msgs}MandateListType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mandates" }) public class MandateList { @XmlElement(name = "Mandates", required = true) protected MandateListType mandates; /** * Ruft den Wert der mandates-Eigenschaft ab. * * @return * possible object is * {@link MandateListType } * */ public MandateListType getMandates() { return mandates; } /** * Legt den Wert der mandates-Eigenschaft fest. * * @param value * allowed object is * {@link MandateListType } * */ public void setMandates(MandateListType value) { this.mandates = value; } }