com.sun.xml.wss.saml.AudienceRestrictionCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*
* AudienceRestrictionCondition.java
*
* Created on August 18, 2005, 12:29 PM
*
*/
package com.sun.xml.wss.saml;
import java.util.List;
/**
*
* @author [email protected]
*/
/**
* This is an implementation of the abstract Condition
class, 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>
*
*/
public interface AudienceRestrictionCondition {
/**
* Gets the value of the audience property.
*
* Objects of the following type(s) are in the list {@link java.lang.String }
*
*/
public List getAudience();
}