package de.fh_giessen.epr.container.v1; 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; /** * Dieser Typ ist ein Behälter für Signaturen sowie OCSP-Status-Abfragen. * *

Java class for TSignaturDatenContainer complex type. * *

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

 * <complexType name="TSignaturDatenContainer">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SignaturDaten" type="{http://www.fh-giessen.de/epr/Container/v1}TSignatureData"/>
 *         <element name="SignaturStatus" type="{http://www.fh-giessen.de/epr/Container/v1}TOCSPResponseData" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TSignaturDatenContainer", propOrder = { "signaturDaten", "signaturStatus" }) public class TSignaturDatenContainer { @XmlElement(name = "SignaturDaten", required = true) protected TSignatureData signaturDaten; @XmlElement(name = "SignaturStatus") protected List signaturStatus; /** * Gets the value of the signaturDaten property. * * @return * possible object is * {@link TSignatureData } * */ public TSignatureData getSignaturDaten() { return signaturDaten; } /** * Sets the value of the signaturDaten property. * * @param value * allowed object is * {@link TSignatureData } * */ public void setSignaturDaten(TSignatureData value) { this.signaturDaten = value; } /** * Gets the value of the signaturStatus 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 signaturStatus property. * *

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

     *    getSignaturStatus().add(newItem);
     * 
* * *

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