package at.gv.util.xsd.w3c_xmlenc; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse für EncryptedKeyType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="EncryptedKeyType">
 *   <complexContent>
 *     <extension base="{http://www.w3.org/2001/04/xmlenc#}EncryptedType">
 *       <sequence>
 *         <element ref="{http://www.w3.org/2001/04/xmlenc#}ReferenceList" minOccurs="0"/>
 *         <element name="CarriedKeyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="Recipient" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EncryptedKeyType", propOrder = { "referenceList", "carriedKeyName" }) public class EncryptedKeyType extends EncryptedType { @XmlElement(name = "ReferenceList") protected ReferenceList referenceList; @XmlElement(name = "CarriedKeyName") protected String carriedKeyName; @XmlAttribute(name = "Recipient") protected String recipient; /** * Ruft den Wert der referenceList-Eigenschaft ab. * * @return * possible object is * {@link ReferenceList } * */ public ReferenceList getReferenceList() { return referenceList; } /** * Legt den Wert der referenceList-Eigenschaft fest. * * @param value * allowed object is * {@link ReferenceList } * */ public void setReferenceList(ReferenceList value) { this.referenceList = value; } /** * Ruft den Wert der carriedKeyName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCarriedKeyName() { return carriedKeyName; } /** * Legt den Wert der carriedKeyName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCarriedKeyName(String value) { this.carriedKeyName = value; } /** * Ruft den Wert der recipient-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getRecipient() { return recipient; } /** * Legt den Wert der recipient-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setRecipient(String value) { this.recipient = value; } }