// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.01.26 at 09:19:39 AM CET // 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; /** * <p>Java class for SignedObjects complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignedObjects", propOrder = { "signedSignature", "timestampedTimestamp", "digestAlgoAndValues" }) public class XmlSignedObjects { @XmlElement(name = "SignedSignature") protected List<XmlSignedSignature> signedSignature; @XmlElement(name = "TimestampedTimestamp") protected List<XmlTimestampedTimestamp> timestampedTimestamp; @XmlElementWrapper(name = "DigestAlgoAndValues") @XmlElement(name = "DigestAlgoAndValue", namespace = "http://dss.esig.europa.eu/validation/diagnostic") protected List<XmlDigestAlgoAndValue> digestAlgoAndValues; /** * Gets the value of the signedSignature property. * * <p> * 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 <CODE>set</CODE> method for the signedSignature property. * * <p> * For example, to add a new item, do as follows: * <pre> * getSignedSignature().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link XmlSignedSignature } * * */ public List<XmlSignedSignature> getSignedSignature() { if (signedSignature == null) { signedSignature = new ArrayList<XmlSignedSignature>(); } return this.signedSignature; } /** * Gets the value of the timestampedTimestamp property. * * <p> * 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 <CODE>set</CODE> method for the timestampedTimestamp property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTimestampedTimestamp().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link XmlTimestampedTimestamp } * * */ public List<XmlTimestampedTimestamp> getTimestampedTimestamp() { if (timestampedTimestamp == null) { timestampedTimestamp = new ArrayList<XmlTimestampedTimestamp>(); } return this.timestampedTimestamp; } public List<XmlDigestAlgoAndValue> getDigestAlgoAndValues() { if (digestAlgoAndValues == null) { digestAlgoAndValues = new ArrayList<XmlDigestAlgoAndValue>(); } return digestAlgoAndValues; } public void setDigestAlgoAndValues(List<XmlDigestAlgoAndValue> digestAlgoAndValues) { this.digestAlgoAndValues = digestAlgoAndValues; } }