01: /*
02: * DoNotCacheCondition.java
03: *
04: * Created on August 18, 2005, 12:32 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: *This is an implementation of the abstract <code>Condition</code> class, which
39: * specifes that the assertion this <code>DoNotCacheCondition</code> is part of,
40: * is the new element in SAML 1.1, that allows an assertion party to express that
41: * an assertion should not be cached by the relying party for future use. In another
42: * word, such an assertion is meant only for "one-time" use by the relying party.
43: *
44: * <p>The following schema fragment specifies the expected content contained within
45: * SAML DoNotCacheCondition element.
46: * <pre>
47: * <complexType name="DoNotCacheConditionType">
48: * <complexContent>
49: * <extension base="{urn:oasis:names:tc:SAML:1.0:assertion}ConditionAbstractType">
50: * </extension>
51: * </complexContent>
52: * </complexType>
53: * </pre>
54: */
55: public interface DoNotCacheCondition {
56:
57: }
|