Package com.sun.xml.wss.saml
Interface AudienceRestriction
-
- All Known Implementing Classes:
AudienceRestriction
public interface AudienceRestrictionThis is an implementation of the abstractConditionclass, which specifes that the assertion this AuthenticationCondition is part of, is addressed to one or more specific audience.The following schema fragment specifies the expected content contained within SAML AudienceRestrictionCondition element.
<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>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>getAudience()Gets the value of the audience property.
-