All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.wss.saml.AuthorityBinding Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010, 2022 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
 */

/*
 * AuthorityBinding.java
 *
 * Created on August 18, 2005, 12:30 PM
 *
 */

package com.sun.xml.wss.saml;

import javax.xml.namespace.QName;

/**
 * The AuthorityBinding element may be used to indicate
 * to a replying party receiving an AuthenticationStatement that
 * a SAML authority may be available to provide additional information about
 * the subject of the statement. A single SAML authority may advertise its
 * presence over multiple protocol binding, at multiple locations, and as
 * more than one kind of authority by sending multiple elements as needed.
 *
 * 

The following schema fragment specifies the expected content contained within * SAML AuthorityBinding element. * *

 * <complexType name="AuthorityBindingType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="AuthorityKind" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *       <attribute name="Binding" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="Location" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface AuthorityBinding { /** * Gets the value of the authorityKind property. * * @return object is {@link QName } * */ QName getAuthorityKind(); /** * Gets the value of the binding property. * * @return object is {@link java.lang.String } * */ String getBinding(); /** * Gets the value of the location property. * * @return object is {@link java.lang.String } * */ String getLocation(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy