01: /*
02: * Attribute.java
03: *
04: * Created on August 18, 2005, 12:28 PM
05: */
06:
07: /*
08: * The contents of this file are subject to the terms
09: * of the Common Development and Distribution License
10: * (the License). You may not use this file except in
11: * compliance with the License.
12: *
13: * You can obtain a copy of the license at
14: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
15: * See the License for the specific language governing
16: * permissions and limitations under the License.
17: *
18: * When distributing Covered Code, include this CDDL
19: * Header Notice in each file and include the License file
20: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
21: * If applicable, add the following below the CDDL Header,
22: * with the fields enclosed by brackets [] replaced by
23: * you own identifying information:
24: * "Portions Copyrighted [year] [name of copyright owner]"
25: *
26: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
27: */
28:
29: package com.sun.xml.wss.saml;
30:
31: /**
32: *
33: * @author abhijit.das@Sun.COM
34: */
35:
36: /**
37: * The <code>Attribute</code> element specifies an attribute of the assertion subject.
38: * The <code>Attribute</code> element is an extension of the <code>AttributeDesignator</code> element
39: * that allows the attribute value to be specified.
40: *
41: * <p>The following schema fragment specifies the expected content contained within SAML Attribute element.
42: *
43: * <pre>
44: * <complexType name="AttributeType">
45: * <complexContent>
46: * <extension base="{urn:oasis:names:tc:SAML:1.0:assertion}AttributeDesignatorType">
47: * <sequence>
48: * <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AttributeValue" maxOccurs="unbounded"/>
49: * </sequence>
50: * </extension>
51: * </complexContent>
52: * </complexType>
53: * </pre>
54: *
55: */
56: public interface Attribute {
57:
58: }
|