All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.jaxb.diagnostic.XmlSignedObjects Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.05.29 at 09:26:39 AM CEST 
//


package eu.europa.esig.dss.jaxb.diagnostic;

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.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for SignedObjects complex type. * *

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

 * <complexType name="SignedObjects">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SignedSignature" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *                 <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *         <element name="TimestampedTimestamp" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *                 <attribute name="Id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *         <element name="DigestAlgoAndValues" type="{http://dss.esig.europa.eu/validation/diagnostic}DigestAlgoAndValues" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignedObjects", propOrder = { "signedSignature", "timestampedTimestamp", "digestAlgoAndValues" }) public class XmlSignedObjects { @XmlElement(name = "SignedSignature") protected List signedSignature; @XmlElement(name = "TimestampedTimestamp") protected List timestampedTimestamp; @XmlElementWrapper(name = "DigestAlgoAndValues") @XmlElement(name = "DigestAlgoAndValue", namespace = "http://dss.esig.europa.eu/validation/diagnostic") protected List digestAlgoAndValues; /** * Gets the value of the signedSignature 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 signedSignature property. * *

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

     *    getSignedSignature().add(newItem);
     * 
* * *

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

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

     *    getTimestampedTimestamp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link XmlTimestampedTimestamp } * * */ public List getTimestampedTimestamp() { if (timestampedTimestamp == null) { timestampedTimestamp = new ArrayList(); } return this.timestampedTimestamp; } public List getDigestAlgoAndValues() { if (digestAlgoAndValues == null) { digestAlgoAndValues = new ArrayList(); } return digestAlgoAndValues; } public void setDigestAlgoAndValues(List digestAlgoAndValues) { this.digestAlgoAndValues = digestAlgoAndValues; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy