01: /*
02: * AuthorityBinding.java
03: *
04: * Created on August 18, 2005, 12:30 PM
05: *
06: */
07:
08: /*
09: * The contents of this file are subject to the terms
10: * of the Common Development and Distribution License
11: * (the License). You may not use this file except in
12: * compliance with the License.
13: *
14: * You can obtain a copy of the license at
15: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
16: * See the License for the specific language governing
17: * permissions and limitations under the License.
18: *
19: * When distributing Covered Code, include this CDDL
20: * Header Notice in each file and include the License file
21: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
22: * If applicable, add the following below the CDDL Header,
23: * with the fields enclosed by brackets [] replaced by
24: * you own identifying information:
25: * "Portions Copyrighted [year] [name of copyright owner]"
26: *
27: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
28: */
29:
30: package com.sun.xml.wss.saml;
31:
32: /**
33: *
34: * @author abhijit.das@Sun.COM
35: */
36:
37: /**
38: * The <code>AuthorityBinding</code> element may be used to indicate
39: * to a replying party receiving an <code>AuthenticationStatement</code> that
40: * a SAML authority may be available to provide additional information about
41: * the subject of the statement. A single SAML authority may advertise its
42: * presence over multiple protocol binding, at multiple locations, and as
43: * more than one kind of authority by sending multiple elements as needed.
44: *
45: * <p>The following schema fragment specifies the expected content contained within
46: * SAML AuthorityBinding element.
47: *
48: * <pre>
49: * <complexType name="AuthorityBindingType">
50: * <complexContent>
51: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
52: * <attribute name="AuthorityKind" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
53: * <attribute name="Binding" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
54: * <attribute name="Location" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
55: * </restriction>
56: * </complexContent>
57: * </complexType>
58: * </pre>
59: *
60: */
61: public interface AuthorityBinding {
62:
63: }
|