// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.06.11 at 10:34:07 AM PDT // package com.sun.identity.saml2.jaxb.xmlenc; /** * Java content class for AgreementMethodType complex type. *

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/saml2/xenc-schema.xsd line 115) *

*

 * <complexType name="AgreementMethodType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="KA-Nonce" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <any/>
 *         <element name="OriginatorKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType" minOccurs="0"/>
 *         <element name="RecipientKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface AgreementMethodType { /** * Gets the value of the algorithm property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getAlgorithm(); /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link java.lang.String} */ void setAlgorithm(java.lang.String value); /** * Gets the value of the Content 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 Content property. * *

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

     *    getContent().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link java.lang.Object} * {@link java.lang.String} * {@link com.sun.identity.saml2.jaxb.xmlenc.AgreementMethodType.RecipientKeyInfo} * {@link com.sun.identity.saml2.jaxb.xmlenc.AgreementMethodType.OriginatorKeyInfo} * {@link com.sun.identity.saml2.jaxb.xmlenc.AgreementMethodType.KANonce} * */ java.util.List getContent(); /** * Java content class for KA-Nonce element declaration. *

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/saml2/xenc-schema.xsd line 117) *

*

     * <element name="KA-Nonce" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     * 
* */ public interface KANonce extends javax.xml.bind.Element { /** * Gets the value of the value property. * * @return * possible object is * byte[] */ byte[] getValue(); /** * Sets the value of the value property. * * @param value * allowed object is * byte[] */ void setValue(byte[] value); } /** * Java content class for OriginatorKeyInfo element declaration. *

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/saml2/xenc-schema.xsd line 120) *

*

     * <element name="OriginatorKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType"/>
     * 
* */ public interface OriginatorKeyInfo extends javax.xml.bind.Element, com.sun.identity.saml2.jaxb.xmlsig.KeyInfoType { } /** * Java content class for RecipientKeyInfo element declaration. *

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/saml2/xenc-schema.xsd line 121) *

*

     * <element name="RecipientKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType"/>
     * 
* */ public interface RecipientKeyInfo extends javax.xml.bind.Element, com.sun.identity.saml2.jaxb.xmlsig.KeyInfoType { } }