// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.10.31 at 07:38:37 PM CET // package at.buergerkarte.namespaces.securitylayer._1_2_3; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

Java class for SignatureInfoCreationType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SignatureInfoCreationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SignatureEnvironment" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}Base64XMLOptRefContentType"/>
 *         <element name="SignatureLocation">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<http://www.w3.org/2001/XMLSchema>token">
 *                 <attribute name="Index" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *         <element name="Supplement" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}DataObjectAssociationType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignatureInfoCreationType", propOrder = { "signatureEnvironment", "signatureLocation", "supplement" }) public class SignatureInfoCreationType { @XmlElement(name = "SignatureEnvironment", required = true) protected Base64XMLOptRefContentType signatureEnvironment; @XmlElement(name = "SignatureLocation", required = true) protected at.gv.egiz.slbinding.impl.SignatureLocationType signatureLocation; @XmlElement(name = "Supplement") protected List supplement; /** * Gets the value of the signatureEnvironment property. * * @return * possible object is * {@link Base64XMLOptRefContentType } * */ public Base64XMLOptRefContentType getSignatureEnvironment() { return signatureEnvironment; } /** * Sets the value of the signatureEnvironment property. * * @param value * allowed object is * {@link Base64XMLOptRefContentType } * */ public void setSignatureEnvironment(Base64XMLOptRefContentType value) { this.signatureEnvironment = value; } /** * Gets the value of the signatureLocation property. * * @return * possible object is * {@link SignatureInfoCreationType.SignatureLocation } * */ public SignatureInfoCreationType.SignatureLocation getSignatureLocation() { return signatureLocation; } /** * Sets the value of the signatureLocation property. * * @param value * allowed object is * {@link SignatureInfoCreationType.SignatureLocation } * */ public void setSignatureLocation(SignatureInfoCreationType.SignatureLocation value) { this.signatureLocation = ((at.gv.egiz.slbinding.impl.SignatureLocationType) value); } /** * Gets the value of the supplement 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 supplement property. * *

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

     *    getSupplement().add(newItem);
     * 
* * *

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

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <simpleContent>
     *     <extension base="<http://www.w3.org/2001/XMLSchema>token">
     *       <attribute name="Index" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
     *     </extension>
     *   </simpleContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class SignatureLocation { @XmlValue @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String value; @XmlAttribute(name = "Index", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger index; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link BigInteger } * */ public void setIndex(BigInteger value) { this.index = value; } } }