//
// 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:34:07 AM PDT
//
package com.sun.identity.saml2.jaxb.xmlenc;
/**
* Java content class for AgreementMethodType 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/saml2/xenc-schema.xsd line 115)
* <p>
* <pre>
* &lt;complexType name="AgreementMethodType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="KA-Nonce" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* &lt;any/>
* &lt;element name="OriginatorKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType" minOccurs="0"/>
* &lt;element name="RecipientKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="Algorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*/
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.
*
* <p>
* 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 <CODE>set</CODE> method for the Content property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getContent().add(newItem);
* </pre>
*
*
* <p>
* 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.
* <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/saml2/xenc-schema.xsd line 117)
* <p>
* <pre>
* &lt;element name="KA-Nonce" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </pre>
*
*/
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.
* <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/saml2/xenc-schema.xsd line 120)
* <p>
* <pre>
* &lt;element name="OriginatorKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType"/>
* </pre>
*
*/
public interface OriginatorKeyInfo
extends javax.xml.bind.Element, com.sun.identity.saml2.jaxb.xmlsig.KeyInfoType
{
}
/**
* Java content class for RecipientKeyInfo element declaration.
* <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/saml2/xenc-schema.xsd line 121)
* <p>
* <pre>
* &lt;element name="RecipientKeyInfo" type="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType"/>
* </pre>
*
*/
public interface RecipientKeyInfo
extends javax.xml.bind.Element, com.sun.identity.saml2.jaxb.xmlsig.KeyInfoType
{
}
}