package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Behälter für Signaturdaten. * * In der XPSR-Spezifikation sind nur Signaturen nach PKCS#7 vorgesehen, weil die im Einsatz befindlichen Fachverfahren nur solche Signaturen verwenden. * * Dieser Typ bietet die Möglichkeit durch weitere Subelemente wahlweise auch andere Signatur-Arten wie z.B. nach XMLDSig einzubinden. * *

Java class for TSignatureData complex type. * *

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

 * <complexType name="TSignatureData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="PK7Signature" type="{http://www.fh-giessen.de/epr/Container/v1}TPK7Signature"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TSignatureData", propOrder = { "pk7Signature" }) public class TSignatureData { @XmlElement(name = "PK7Signature") protected TPK7Signature pk7Signature; /** * Gets the value of the pk7Signature property. * * @return * possible object is * {@link TPK7Signature } * */ public TPK7Signature getPK7Signature() { return pk7Signature; } /** * Sets the value of the pk7Signature property. * * @param value * allowed object is * {@link TPK7Signature } * */ public void setPK7Signature(TPK7Signature value) { this.pk7Signature = value; } }