//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
// 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: 2012.06.11 at 10:33:54 AM PDT
//
package com.sun.identity.liberty.ws.meta.jaxb;
/**
* Java content class for keyDescriptorType complex type.
* <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/Users/allan/A-SVN/trunk/opensso/products/federation/library/xsd/liberty/lib-arch-metadata.xsd line 151)
* <p>
* <pre>
* &lt;complexType name="keyDescriptorType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="EncryptionMethod" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* &lt;element name="KeySize" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/>
* &lt;element ref="{urn:liberty:metadata:2003-08}Extension" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="use" type="{urn:liberty:metadata:2003-08}keyTypes" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*/
public interface KeyDescriptorType {
/**
* Gets the value of the keyInfo property.
*
* @return
* possible object is
* {@link com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoType}
* {@link com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoElement}
*/
com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoType getKeyInfo();
/**
* Sets the value of the keyInfo property.
*
* @param value
* allowed object is
* {@link com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoType}
* {@link com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoElement}
*/
void setKeyInfo(com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoType value);
/**
* Gets the value of the extension property.
*
* @return
* possible object is
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionElement}
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionType}
*/
com.sun.identity.liberty.ws.meta.jaxb.ExtensionType getExtension();
/**
* Sets the value of the extension property.
*
* @param value
* allowed object is
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionElement}
* {@link com.sun.identity.liberty.ws.meta.jaxb.ExtensionType}
*/
void setExtension(com.sun.identity.liberty.ws.meta.jaxb.ExtensionType value);
/**
* Gets the value of the encryptionMethod property.
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getEncryptionMethod();
/**
* Sets the value of the encryptionMethod property.
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setEncryptionMethod(java.lang.String value);
/**
* Gets the value of the keySize property.
*
* @return
* possible object is
* {@link java.math.BigInteger}
*/
java.math.BigInteger getKeySize();
/**
* Sets the value of the keySize property.
*
* @param value
* allowed object is
* {@link java.math.BigInteger}
*/
void setKeySize(java.math.BigInteger value);
/**
* Gets the value of the use property.
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getUse();
/**
* Sets the value of the use property.
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setUse(java.lang.String value);
}