package at.gv.util.xsd.szr.xmldsig; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.szr.ecdsa.ECDSAKeyValueType; /** *

Java class for KeyValueType complex type. * *

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

 * <complexType name="KeyValueType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DSAKeyValue" type="{http://www.w3.org/2000/09/xmldsig#}DSAKeyValueType" minOccurs="0"/>
 *         <element name="RSAKeyValue" type="{http://www.w3.org/2000/09/xmldsig#}RSAKeyValueType" minOccurs="0"/>
 *         <element ref="{http://www.w3.org/2001/04/xmldsig-more#}ECDSAKeyValue"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeyValueType", propOrder = { "dsaKeyValue", "rsaKeyValue", "ecdsaKeyValue" }) public class KeyValueType { @XmlElement(name = "DSAKeyValue") protected DSAKeyValueType dsaKeyValue; @XmlElement(name = "RSAKeyValue") protected RSAKeyValueType rsaKeyValue; @XmlElement(name = "ECDSAKeyValue", namespace = "http://www.w3.org/2001/04/xmldsig-more#", required = true) protected ECDSAKeyValueType ecdsaKeyValue; /** * Gets the value of the dsaKeyValue property. * * @return * possible object is * {@link DSAKeyValueType } * */ public DSAKeyValueType getDSAKeyValue() { return dsaKeyValue; } /** * Sets the value of the dsaKeyValue property. * * @param value * allowed object is * {@link DSAKeyValueType } * */ public void setDSAKeyValue(DSAKeyValueType value) { this.dsaKeyValue = value; } /** * Gets the value of the rsaKeyValue property. * * @return * possible object is * {@link RSAKeyValueType } * */ public RSAKeyValueType getRSAKeyValue() { return rsaKeyValue; } /** * Sets the value of the rsaKeyValue property. * * @param value * allowed object is * {@link RSAKeyValueType } * */ public void setRSAKeyValue(RSAKeyValueType value) { this.rsaKeyValue = value; } /** * Gets the value of the ecdsaKeyValue property. * * @return * possible object is * {@link ECDSAKeyValueType } * */ public ECDSAKeyValueType getECDSAKeyValue() { return ecdsaKeyValue; } /** * Sets the value of the ecdsaKeyValue property. * * @param value * allowed object is * {@link ECDSAKeyValueType } * */ public void setECDSAKeyValue(ECDSAKeyValueType value) { this.ecdsaKeyValue = value; } }