/* * 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. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2008.07.25 at 10:14:41 AM GMT // package org.etsi.uri._01903.v1_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 UnsignedSignaturePropertiesType complex type. * *

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

 * <complexType name="UnsignedSignaturePropertiesType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CounterSignature" type="{http://uri.etsi.org/01903/v1.1.1#}CounterSignatureType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="SignatureTimeStamp" type="{http://uri.etsi.org/01903/v1.1.1#}TimeStampType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="CompleteCertificateRefs" type="{http://uri.etsi.org/01903/v1.1.1#}CompleteCertificateRefsType" minOccurs="0"/>
 *         <element name="CompleteRevocationRefs" type="{http://uri.etsi.org/01903/v1.1.1#}CompleteRevocationRefsType" minOccurs="0"/>
 *         <choice>
 *           <element name="SigAndRefsTimeStamp" type="{http://uri.etsi.org/01903/v1.1.1#}TimeStampType" maxOccurs="unbounded" minOccurs="0"/>
 *           <element name="RefsOnlyTimeStamp" type="{http://uri.etsi.org/01903/v1.1.1#}TimeStampType" maxOccurs="unbounded" minOccurs="0"/>
 *         </choice>
 *         <element name="CertificateValues" type="{http://uri.etsi.org/01903/v1.1.1#}CertificateValuesType" minOccurs="0"/>
 *         <element name="RevocationValues" type="{http://uri.etsi.org/01903/v1.1.1#}RevocationValuesType" minOccurs="0"/>
 *         <element name="ArchiveTimeStamp" type="{http://uri.etsi.org/01903/v1.1.1#}TimeStampType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnsignedSignaturePropertiesType", propOrder = { "counterSignature", "signatureTimeStamp", "completeCertificateRefs", "completeRevocationRefs", "sigAndRefsTimeStamp", "refsOnlyTimeStamp", "certificateValues", "revocationValues", "archiveTimeStamp" }) public class UnsignedSignaturePropertiesType { @XmlElement(name = "CounterSignature") protected List counterSignature; @XmlElement(name = "SignatureTimeStamp") protected List signatureTimeStamp; @XmlElement(name = "CompleteCertificateRefs") protected CompleteCertificateRefsType completeCertificateRefs; @XmlElement(name = "CompleteRevocationRefs") protected CompleteRevocationRefsType completeRevocationRefs; @XmlElement(name = "SigAndRefsTimeStamp") protected List sigAndRefsTimeStamp; @XmlElement(name = "RefsOnlyTimeStamp") protected List refsOnlyTimeStamp; @XmlElement(name = "CertificateValues") protected CertificateValuesType certificateValues; @XmlElement(name = "RevocationValues") protected RevocationValuesType revocationValues; @XmlElement(name = "ArchiveTimeStamp") protected List archiveTimeStamp; /** * Gets the value of the counterSignature 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 counterSignature property. * *

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

     *    getCounterSignature().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CounterSignatureType } * * */ public List getCounterSignature() { if (counterSignature == null) { counterSignature = new ArrayList(); } return this.counterSignature; } /** * Gets the value of the signatureTimeStamp 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 signatureTimeStamp property. * *

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

     *    getSignatureTimeStamp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TimeStampType } * * */ public List getSignatureTimeStamp() { if (signatureTimeStamp == null) { signatureTimeStamp = new ArrayList(); } return this.signatureTimeStamp; } /** * Gets the value of the completeCertificateRefs property. * * @return * possible object is * {@link CompleteCertificateRefsType } * */ public CompleteCertificateRefsType getCompleteCertificateRefs() { return completeCertificateRefs; } /** * Sets the value of the completeCertificateRefs property. * * @param value * allowed object is * {@link CompleteCertificateRefsType } * */ public void setCompleteCertificateRefs(CompleteCertificateRefsType value) { this.completeCertificateRefs = value; } /** * Gets the value of the completeRevocationRefs property. * * @return * possible object is * {@link CompleteRevocationRefsType } * */ public CompleteRevocationRefsType getCompleteRevocationRefs() { return completeRevocationRefs; } /** * Sets the value of the completeRevocationRefs property. * * @param value * allowed object is * {@link CompleteRevocationRefsType } * */ public void setCompleteRevocationRefs(CompleteRevocationRefsType value) { this.completeRevocationRefs = value; } /** * Gets the value of the sigAndRefsTimeStamp 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 sigAndRefsTimeStamp property. * *

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

     *    getSigAndRefsTimeStamp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TimeStampType } * * */ public List getSigAndRefsTimeStamp() { if (sigAndRefsTimeStamp == null) { sigAndRefsTimeStamp = new ArrayList(); } return this.sigAndRefsTimeStamp; } /** * Gets the value of the refsOnlyTimeStamp 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 refsOnlyTimeStamp property. * *

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

     *    getRefsOnlyTimeStamp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TimeStampType } * * */ public List getRefsOnlyTimeStamp() { if (refsOnlyTimeStamp == null) { refsOnlyTimeStamp = new ArrayList(); } return this.refsOnlyTimeStamp; } /** * Gets the value of the certificateValues property. * * @return * possible object is * {@link CertificateValuesType } * */ public CertificateValuesType getCertificateValues() { return certificateValues; } /** * Sets the value of the certificateValues property. * * @param value * allowed object is * {@link CertificateValuesType } * */ public void setCertificateValues(CertificateValuesType value) { this.certificateValues = value; } /** * Gets the value of the revocationValues property. * * @return * possible object is * {@link RevocationValuesType } * */ public RevocationValuesType getRevocationValues() { return revocationValues; } /** * Sets the value of the revocationValues property. * * @param value * allowed object is * {@link RevocationValuesType } * */ public void setRevocationValues(RevocationValuesType value) { this.revocationValues = value; } /** * Gets the value of the archiveTimeStamp 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 archiveTimeStamp property. * *

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

     *    getArchiveTimeStamp().add(newItem);
     * 
* * *

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