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