01: /*
02: * Conditions.java
03: *
04: * Created on August 18, 2005, 12:31 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: package com.sun.xml.wss.saml;
30:
31: /**
32: *
33: * @author abhijit.das@Sun.COM
34: */
35:
36: /**
37: * The validity of an <code>Assertion</code> MAY be subject to a set of
38: * <code>Conditions</code>. Each <code>Condition</code> evaluates to a value that
39: * is Valid, Invalid or Indeterminate.
40: *
41: * <p>The following schema fragment specifies the expected content contained within
42: * SAML Conditions element.
43: *
44: * <pre>
45: * <complexType name="ConditionsType">
46: * <complexContent>
47: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48: * <choice maxOccurs="unbounded" minOccurs="0">
49: * <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AudienceRestrictionCondition"/>
50: * <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}DoNotCacheCondition"/>
51: * <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}Condition"/>
52: * </choice>
53: * <attribute name="NotBefore" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
54: * <attribute name="NotOnOrAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
55: * </restriction>
56: * </complexContent>
57: * </complexType>
58: * </pre>
59: */
60: public interface Conditions {
61:
62: }
|