/* * Copyright 2011 by Graz University of Technology, Austria * MOCCA has been developed by the E-Government Innovation Center EGIZ, a joint * initiative of the Federal Chancellery Austria and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. */ package moaspss.generated; 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.XmlElements; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for VerifyXMLSignatureRequestType complex type. * *

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

 * <complexType name="VerifyXMLSignatureRequestType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="VerifySignatureInfo">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="VerifySignatureEnvironment" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentOptionalRefType"/>
 *                   <element name="VerifySignatureLocation" type="{http://www.w3.org/2001/XMLSchema}token"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <choice maxOccurs="unbounded" minOccurs="0">
 *           <element ref="{http://reference.e-government.gv.at/namespace/moa/20020822#}SupplementProfile"/>
 *           <element name="SupplementProfileID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         </choice>
 *         <element name="SignatureManifestCheckParams" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="ReferenceInfo" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}VerifyTransformsDataType" maxOccurs="unbounded"/>
 *                 </sequence>
 *                 <attribute name="ReturnReferenceInputData" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="ReturnHashInputData" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="TrustProfileID" type="{http://www.w3.org/2001/XMLSchema}token"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VerifyXMLSignatureRequestType", propOrder = { "dateTime", "verifySignatureInfo", "supplementProfileOrSupplementProfileID", "signatureManifestCheckParams", "returnHashInputData", "trustProfileID" }) public class VerifyXMLSignatureRequestType { @XmlElement(name = "DateTime") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dateTime; @XmlElement(name = "VerifySignatureInfo", required = true) protected VerifyXMLSignatureRequestType.VerifySignatureInfo verifySignatureInfo; @XmlElements({ @XmlElement(name = "SupplementProfileID", type = String.class), @XmlElement(name = "SupplementProfile", type = XMLDataObjectAssociationType.class) }) protected List supplementProfileOrSupplementProfileID; @XmlElement(name = "SignatureManifestCheckParams") protected VerifyXMLSignatureRequestType.SignatureManifestCheckParams signatureManifestCheckParams; @XmlElement(name = "ReturnHashInputData") protected Object returnHashInputData; @XmlElement(name = "TrustProfileID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String trustProfileID; /** * Gets the value of the dateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateTime() { return dateTime; } /** * Sets the value of the dateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateTime(XMLGregorianCalendar value) { this.dateTime = value; } /** * Gets the value of the verifySignatureInfo property. * * @return * possible object is * {@link VerifyXMLSignatureRequestType.VerifySignatureInfo } * */ public VerifyXMLSignatureRequestType.VerifySignatureInfo getVerifySignatureInfo() { return verifySignatureInfo; } /** * Sets the value of the verifySignatureInfo property. * * @param value * allowed object is * {@link VerifyXMLSignatureRequestType.VerifySignatureInfo } * */ public void setVerifySignatureInfo(VerifyXMLSignatureRequestType.VerifySignatureInfo value) { this.verifySignatureInfo = value; } /** * Gets the value of the supplementProfileOrSupplementProfileID 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 supplementProfileOrSupplementProfileID property. * *

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

     *    getSupplementProfileOrSupplementProfileID().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * {@link XMLDataObjectAssociationType } * * */ public List getSupplementProfileOrSupplementProfileID() { if (supplementProfileOrSupplementProfileID == null) { supplementProfileOrSupplementProfileID = new ArrayList(); } return this.supplementProfileOrSupplementProfileID; } /** * Gets the value of the signatureManifestCheckParams property. * * @return * possible object is * {@link VerifyXMLSignatureRequestType.SignatureManifestCheckParams } * */ public VerifyXMLSignatureRequestType.SignatureManifestCheckParams getSignatureManifestCheckParams() { return signatureManifestCheckParams; } /** * Sets the value of the signatureManifestCheckParams property. * * @param value * allowed object is * {@link VerifyXMLSignatureRequestType.SignatureManifestCheckParams } * */ public void setSignatureManifestCheckParams(VerifyXMLSignatureRequestType.SignatureManifestCheckParams value) { this.signatureManifestCheckParams = value; } /** * Gets the value of the returnHashInputData property. * * @return * possible object is * {@link Object } * */ public Object getReturnHashInputData() { return returnHashInputData; } /** * Sets the value of the returnHashInputData property. * * @param value * allowed object is * {@link Object } * */ public void setReturnHashInputData(Object value) { this.returnHashInputData = value; } /** * Gets the value of the trustProfileID property. * * @return * possible object is * {@link String } * */ public String getTrustProfileID() { return trustProfileID; } /** * Sets the value of the trustProfileID property. * * @param value * allowed object is * {@link String } * */ public void setTrustProfileID(String value) { this.trustProfileID = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="ReferenceInfo" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}VerifyTransformsDataType" maxOccurs="unbounded"/>
     *       </sequence>
     *       <attribute name="ReturnReferenceInputData" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "referenceInfo" }) public static class SignatureManifestCheckParams { @XmlElement(name = "ReferenceInfo", required = true) protected List referenceInfo; @XmlAttribute(name = "ReturnReferenceInputData") protected Boolean returnReferenceInputData; /** * Gets the value of the referenceInfo 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 referenceInfo property. * *

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

         *    getReferenceInfo().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VerifyTransformsDataType } * * */ public List getReferenceInfo() { if (referenceInfo == null) { referenceInfo = new ArrayList(); } return this.referenceInfo; } /** * Gets the value of the returnReferenceInputData property. * * @return * possible object is * {@link Boolean } * */ public boolean isReturnReferenceInputData() { if (returnReferenceInputData == null) { return true; } else { return returnReferenceInputData; } } /** * Sets the value of the returnReferenceInputData property. * * @param value * allowed object is * {@link Boolean } * */ public void setReturnReferenceInputData(Boolean value) { this.returnReferenceInputData = value; } } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="VerifySignatureEnvironment" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentOptionalRefType"/>
     *         <element name="VerifySignatureLocation" type="{http://www.w3.org/2001/XMLSchema}token"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "verifySignatureEnvironment", "verifySignatureLocation" }) public static class VerifySignatureInfo { @XmlElement(name = "VerifySignatureEnvironment", required = true) protected ContentOptionalRefType verifySignatureEnvironment; @XmlElement(name = "VerifySignatureLocation", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String verifySignatureLocation; /** * Gets the value of the verifySignatureEnvironment property. * * @return * possible object is * {@link ContentOptionalRefType } * */ public ContentOptionalRefType getVerifySignatureEnvironment() { return verifySignatureEnvironment; } /** * Sets the value of the verifySignatureEnvironment property. * * @param value * allowed object is * {@link ContentOptionalRefType } * */ public void setVerifySignatureEnvironment(ContentOptionalRefType value) { this.verifySignatureEnvironment = value; } /** * Gets the value of the verifySignatureLocation property. * * @return * possible object is * {@link String } * */ public String getVerifySignatureLocation() { return verifySignatureLocation; } /** * Sets the value of the verifySignatureLocation property. * * @param value * allowed object is * {@link String } * */ public void setVerifySignatureLocation(String value) { this.verifySignatureLocation = value; } } }