//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-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: 2005.09.05 at 03:09:41 PM IST
//
package com.sun.xml.wss.saml.internal.saml11.jaxb10;
/**
* Java content class for AudienceRestrictionConditionType complex type.
* <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/space/combination/jwsdp1.6_tc/jaxb/bin/oasis-sstc-saml-schema-assertion-1.1.xsd line 57)
* <p>
* <pre>
* <complexType name="AudienceRestrictionConditionType">
* <complexContent>
* <extension base="{urn:oasis:names:tc:SAML:1.0:assertion}ConditionAbstractType">
* <sequence>
* <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}Audience" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*/
public interface AudienceRestrictionConditionType
extends com.sun.xml.wss.saml.internal.saml11.jaxb10.ConditionAbstractType
{
/**
* Gets the value of the Audience 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 Audience property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAudience().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link java.lang.String}
*
*/
java.util.List getAudience();
}
|