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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse für SimplePath complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="SimplePath">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PathTo">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute name="recurse" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SimplePath", propOrder = { "pathTo" }) public class SimplePath { @XmlElement(name = "PathTo", required = true) protected SimplePath.PathTo pathTo; /** * Ruft den Wert der pathTo-Eigenschaft ab. * * @return * possible object is * {@link SimplePath.PathTo } * */ public SimplePath.PathTo getPathTo() { return pathTo; } /** * Legt den Wert der pathTo-Eigenschaft fest. * * @param value * allowed object is * {@link SimplePath.PathTo } * */ public void setPathTo(SimplePath.PathTo value) { this.pathTo = value; } /** *

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">
     *       <attribute name="recurse" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class PathTo { @XmlAttribute(name = "recurse") protected Boolean recurse; /** * Ruft den Wert der recurse-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isRecurse() { return recurse; } /** * Legt den Wert der recurse-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setRecurse(Boolean value) { this.recurse = value; } } }