package at.gv.util.xsd.szr.pvp19; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; import org.w3c.dom.Element; /** *

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

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

 * <complexType name="pvpTokenType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="authenticate">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="participantId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="gvOuDomain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <choice>
 *                     <element name="userPrincipal">
 *                       <complexType>
 *                         <complexContent>
 *                           <extension base="{http://egov.gv.at/pvp1.xsd}pvpPrincipalType">
 *                             <sequence>
 *                               <element name="gvGid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                               <element name="mail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                               <element name="tel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                               <element name="bpk" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                               <element name="gvFunction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                             </sequence>
 *                             <anyAttribute processContents='lax'/>
 *                           </extension>
 *                         </complexContent>
 *                       </complexType>
 *                     </element>
 *                     <element name="systemPrincipal" type="{http://egov.gv.at/pvp1.xsd}pvpPrincipalType"/>
 *                   </choice>
 *                   <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="authorize" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <sequence minOccurs="0">
 *                     <element name="gvOuId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                     <element name="ou" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   </sequence>
 *                   <element name="role" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 *                           </sequence>
 *                           <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                   <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="accounting" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="pvpChainedToken" type="{http://egov.gv.at/pvp1.xsd}pvpTokenType" minOccurs="0"/>
 *         <element name="pvpExtension" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="version" use="required" type="{http://egov.gv.at/pvp1.xsd}gvVersionType" />
 *       <anyAttribute processContents='lax'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "pvpTokenType", propOrder = { "authenticate", "authorize", "accounting", "pvpChainedToken", "pvpExtension" }) @XmlSeeAlso({ PvpToken.class }) public class PvpTokenType { @XmlElement(required = true) protected PvpTokenType.Authenticate authenticate; protected PvpTokenType.Authorize authorize; protected PvpTokenType.Accounting accounting; protected PvpTokenType pvpChainedToken; protected PvpTokenType.PvpExtension pvpExtension; @XmlAttribute(name = "version", required = true) protected String version; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Ruft den Wert der authenticate-Eigenschaft ab. * * @return * possible object is * {@link PvpTokenType.Authenticate } * */ public PvpTokenType.Authenticate getAuthenticate() { return authenticate; } /** * Legt den Wert der authenticate-Eigenschaft fest. * * @param value * allowed object is * {@link PvpTokenType.Authenticate } * */ public void setAuthenticate(PvpTokenType.Authenticate value) { this.authenticate = value; } /** * Ruft den Wert der authorize-Eigenschaft ab. * * @return * possible object is * {@link PvpTokenType.Authorize } * */ public PvpTokenType.Authorize getAuthorize() { return authorize; } /** * Legt den Wert der authorize-Eigenschaft fest. * * @param value * allowed object is * {@link PvpTokenType.Authorize } * */ public void setAuthorize(PvpTokenType.Authorize value) { this.authorize = value; } /** * Ruft den Wert der accounting-Eigenschaft ab. * * @return * possible object is * {@link PvpTokenType.Accounting } * */ public PvpTokenType.Accounting getAccounting() { return accounting; } /** * Legt den Wert der accounting-Eigenschaft fest. * * @param value * allowed object is * {@link PvpTokenType.Accounting } * */ public void setAccounting(PvpTokenType.Accounting value) { this.accounting = value; } /** * Ruft den Wert der pvpChainedToken-Eigenschaft ab. * * @return * possible object is * {@link PvpTokenType } * */ public PvpTokenType getPvpChainedToken() { return pvpChainedToken; } /** * Legt den Wert der pvpChainedToken-Eigenschaft fest. * * @param value * allowed object is * {@link PvpTokenType } * */ public void setPvpChainedToken(PvpTokenType value) { this.pvpChainedToken = value; } /** * Ruft den Wert der pvpExtension-Eigenschaft ab. * * @return * possible object is * {@link PvpTokenType.PvpExtension } * */ public PvpTokenType.PvpExtension getPvpExtension() { return pvpExtension; } /** * Legt den Wert der pvpExtension-Eigenschaft fest. * * @param value * allowed object is * {@link PvpTokenType.PvpExtension } * */ public void setPvpExtension(PvpTokenType.PvpExtension value) { this.pvpExtension = value; } /** * Ruft den Wert der version-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Legt den Wert der version-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } /** *

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>
     *         <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Accounting { @XmlAnyElement protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

         *    getAny().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } /** *

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="participantId" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="gvOuDomain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <choice>
     *           <element name="userPrincipal">
     *             <complexType>
     *               <complexContent>
     *                 <extension base="{http://egov.gv.at/pvp1.xsd}pvpPrincipalType">
     *                   <sequence>
     *                     <element name="gvGid" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                     <element name="mail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                     <element name="tel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                     <element name="bpk" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                     <element name="gvFunction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                   </sequence>
     *                   <anyAttribute processContents='lax'/>
     *                 </extension>
     *               </complexContent>
     *             </complexType>
     *           </element>
     *           <element name="systemPrincipal" type="{http://egov.gv.at/pvp1.xsd}pvpPrincipalType"/>
     *         </choice>
     *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "participantId", "gvOuDomain", "userPrincipal", "systemPrincipal", "any" }) public static class Authenticate { @XmlElement(required = true) protected String participantId; protected String gvOuDomain; protected PvpTokenType.Authenticate.UserPrincipal userPrincipal; protected PvpPrincipalType systemPrincipal; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der participantId-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getParticipantId() { return participantId; } /** * Legt den Wert der participantId-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setParticipantId(String value) { this.participantId = value; } /** * Ruft den Wert der gvOuDomain-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getGvOuDomain() { return gvOuDomain; } /** * Legt den Wert der gvOuDomain-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setGvOuDomain(String value) { this.gvOuDomain = value; } /** * Ruft den Wert der userPrincipal-Eigenschaft ab. * * @return * possible object is * {@link PvpTokenType.Authenticate.UserPrincipal } * */ public PvpTokenType.Authenticate.UserPrincipal getUserPrincipal() { return userPrincipal; } /** * Legt den Wert der userPrincipal-Eigenschaft fest. * * @param value * allowed object is * {@link PvpTokenType.Authenticate.UserPrincipal } * */ public void setUserPrincipal(PvpTokenType.Authenticate.UserPrincipal value) { this.userPrincipal = value; } /** * Ruft den Wert der systemPrincipal-Eigenschaft ab. * * @return * possible object is * {@link PvpPrincipalType } * */ public PvpPrincipalType getSystemPrincipal() { return systemPrincipal; } /** * Legt den Wert der systemPrincipal-Eigenschaft fest. * * @param value * allowed object is * {@link PvpPrincipalType } * */ public void setSystemPrincipal(PvpPrincipalType value) { this.systemPrincipal = value; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

         *    getAny().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** *

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

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

         * <complexType>
         *   <complexContent>
         *     <extension base="{http://egov.gv.at/pvp1.xsd}pvpPrincipalType">
         *       <sequence>
         *         <element name="gvGid" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         <element name="mail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="tel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="bpk" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="gvFunction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *       </sequence>
         *       <anyAttribute processContents='lax'/>
         *     </extension>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "gvGid", "mail", "tel", "bpk", "gvFunction" }) public static class UserPrincipal extends PvpPrincipalType { @XmlElement(required = true) protected String gvGid; protected String mail; protected String tel; protected String bpk; protected String gvFunction; /** * Ruft den Wert der gvGid-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getGvGid() { return gvGid; } /** * Legt den Wert der gvGid-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setGvGid(String value) { this.gvGid = value; } /** * Ruft den Wert der mail-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getMail() { return mail; } /** * Legt den Wert der mail-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setMail(String value) { this.mail = value; } /** * Ruft den Wert der tel-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTel() { return tel; } /** * Legt den Wert der tel-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTel(String value) { this.tel = value; } /** * Ruft den Wert der bpk-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getBpk() { return bpk; } /** * Legt den Wert der bpk-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setBpk(String value) { this.bpk = value; } /** * Ruft den Wert der gvFunction-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getGvFunction() { return gvFunction; } /** * Legt den Wert der gvFunction-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setGvFunction(String value) { this.gvFunction = 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">
     *       <sequence>
     *         <sequence minOccurs="0">
     *           <element name="gvOuId" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *           <element name="ou" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         </sequence>
     *         <element name="role" maxOccurs="unbounded">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
     *                 </sequence>
     *                 <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "gvOuId", "ou", "role", "any" }) public static class Authorize { protected String gvOuId; protected String ou; @XmlElement(required = true) protected List role; @XmlAnyElement(lax = true) protected List any; /** * Ruft den Wert der gvOuId-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getGvOuId() { return gvOuId; } /** * Legt den Wert der gvOuId-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setGvOuId(String value) { this.gvOuId = value; } /** * Ruft den Wert der ou-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getOu() { return ou; } /** * Legt den Wert der ou-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setOu(String value) { this.ou = value; } /** * Gets the value of the role property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the role property. * *

* For example, to add a new item, do as follows: *

         *    getRole().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PvpTokenType.Authorize.Role } * * */ public List getRole() { if (role == null) { role = new ArrayList(); } return this.role; } /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

         *    getAny().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * {@link Object } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** *

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>
         *         <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
         *       </sequence>
         *       <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Role { @XmlAnyElement protected List any; @XmlAttribute(name = "value", required = true) protected String value; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

             *    getAny().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } /** * Ruft den Wert der value-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Legt den Wert der value-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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">
     *       <sequence>
     *         <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class PvpExtension { @XmlAnyElement protected List any; /** * Gets the value of the any property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the any property. * *

* For example, to add a new item, do as follows: *

         *    getAny().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } }