01: /*
02: * AuthenticationStatement.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>AuthenticationStatement</code> element supplies a
39: * statement by the issuer that its subject was authenticated by a
40: * particular means at a particular time. The
41: * <code>AuthenticationStatement</code> element is of type
42: * <code>AuthenticationStatementType</code>, which extends the
43: * <code>SubjectStatementAbstractType</code> with the additional element and
44: * attributes.
45: *
46: * <p>The following schema fragment specifies the expected content contained within SAML
47: * AuthenticationStatement element.
48: *
49: * <pre>
50: * <complexType name="AuthenticationStatementType">
51: * <complexContent>
52: * <extension base="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectStatementAbstractType">
53: * <sequence>
54: * <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectLocality" minOccurs="0"/>
55: * <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AuthorityBinding" maxOccurs="unbounded" minOccurs="0"/>
56: * </sequence>
57: * <attribute name="AuthenticationInstant" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
58: * <attribute name="AuthenticationMethod" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
59: * </extension>
60: * </complexContent>
61: * </complexType>
62: * </pre>
63: *
64: */
65: public interface AuthenticationStatement {
66:
67: }
|