// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.02.26 at 12:32:35 PM MEZ // package at.buergerkarte.namespaces.securitylayer._1; 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

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" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}SignatureLocationType"/>
 *         <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, type = at.gv.egiz.slbinding.impl.SignatureLocationType.class) 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 at.buergerkarte.namespaces.securitylayer._1.SignatureLocationType } * */ public at.buergerkarte.namespaces.securitylayer._1.SignatureLocationType getSignatureLocation() { return signatureLocation; } /** * Sets the value of the signatureLocation property. * * @param value * allowed object is * {@link at.buergerkarte.namespaces.securitylayer._1.SignatureLocationType } * */ public void setSignatureLocation(at.buergerkarte.namespaces.securitylayer._1.SignatureLocationType 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; } }