01: /*
02: * $Id: Condition.java,v 1.2 2006/09/29 12:05:12 kumarjayanti Exp $
03: */
04:
05: /*
06: * The contents of this file are subject to the terms
07: * of the Common Development and Distribution License
08: * (the License). You may not use this file except in
09: * compliance with the License.
10: *
11: * You can obtain a copy of the license at
12: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
13: * See the License for the specific language governing
14: * permissions and limitations under the License.
15: *
16: * When distributing Covered Code, include this CDDL
17: * Header Notice in each file and include the License file
18: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
19: * If applicable, add the following below the CDDL Header,
20: * with the fields enclosed by brackets [] replaced by
21: * you own identifying information:
22: * "Portions Copyrighted [year] [name of copyright owner]"
23: *
24: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
25: */
26:
27: package com.sun.xml.wss.saml.assertion.saml20.jaxb20;
28:
29: import com.sun.xml.wss.saml.internal.saml20.jaxb20.ConditionAbstractType;
30:
31: /**
32: * This is an abstract class which servers as an extension point for new
33: * conditions. This is one of the element within the <code>Conditions</code>
34: * object. Extension elements based on this class MUST use xsi:type attribute
35: * to indicate the derived type.
36: */
37: public abstract class Condition extends ConditionAbstractType implements
38: com.sun.xml.wss.saml.Condition {
39:
40: }
|