001: /*
002: * $Id: WSTrustConstants.java,v 1.9 2007/05/29 22:11:29 ofung Exp $
003: */
004:
005: /*
006: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
007: *
008: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
009: *
010: * The contents of this file are subject to the terms of either the GNU
011: * General Public License Version 2 only ("GPL") or the Common Development
012: * and Distribution License("CDDL") (collectively, the "License"). You
013: * may not use this file except in compliance with the License. You can obtain
014: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
015: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
016: * language governing permissions and limitations under the License.
017: *
018: * When distributing the software, include this License Header Notice in each
019: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
020: * Sun designates this particular file as subject to the "Classpath" exception
021: * as provided by Sun in the GPL Version 2 section of the License file that
022: * accompanied this code. If applicable, add the following below the License
023: * Header, with the fields enclosed by brackets [] replaced by your own
024: * identifying information: "Portions Copyrighted [year]
025: * [name of copyright owner]"
026: *
027: * Contributor(s):
028: *
029: * If you wish your version of this file to be governed by only the CDDL or
030: * only the GPL Version 2, indicate your decision by adding "[Contributor]
031: * elects to include this software in this distribution under the [CDDL or GPL
032: * Version 2] license." If you don't indicate a single choice of license, a
033: * recipient has the option to distribute your version of this file under
034: * either the CDDL, the GPL Version 2 or to extend the choice of license to
035: * its licensees as provided above. However, if you add GPL Version 2 code
036: * and therefore, elected the GPL Version 2 license, then the option applies
037: * only if the new code is made subject to such option by the copyright
038: * holder.
039: */
040:
041: package com.sun.xml.ws.security.trust;
042:
043: /**
044: * Common Constants pertaining to WS-Trust
045: * @author WS-Trust Implementation Team
046: */
047: public class WSTrustConstants {
048:
049: public static final String STS_CALL_BACK_HANDLER = "stsCallbackHandler";
050:
051: public static final String SECURITY_ENVIRONMENT = "SecurityEnvironment";
052:
053: public static final String SAML10_ASSERTION_TOKEN_TYPE = "urn:oasis:names:tc:SAML:1.0:assertion";
054:
055: public static final String SAML11_ASSERTION_TOKEN_TYPE = "http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV1.1";
056:
057: public static final String SAML20_ASSERTION_TOKEN_TYPE = "urn:oasis:names:tc:SAML:2.0:assertion";
058:
059: public static final String OPAQUE_TYPE = "opaque";
060:
061: public static final String SAML11_TYPE = "urn:oasis:names:tc:SAML:1.1:assertion";
062:
063: /** the Trust namespace URI */
064: public static final String WST_NAMESPACE = "http://schemas.xmlsoap.org/ws/2005/02/trust";
065:
066: /** the prefix to use for Trust */
067: public static final String WST_PREFIX = "wst";
068:
069: /** URI for different request types */
070: public static final String ISSUE_REQUEST = WST_NAMESPACE + "/Issue";
071: public static final String RENEW_REQUEST = WST_NAMESPACE + "/Renew";
072: public static final String CANCEL_REQUEST = WST_NAMESPACE
073: + "/Cancel";
074: public static final String VALIDATE_REQUEST = WST_NAMESPACE
075: + "/Validate";
076: public static final String KEY_EXCHANGE_REQUEST = WST_NAMESPACE
077: + "/KET";
078:
079: /**
080: * URI for KeyType
081: */
082: public static final String PUBLIC_KEY = WST_NAMESPACE
083: + "/PublicKey";
084: public static final String SYMMETRIC_KEY = WST_NAMESPACE
085: + "/SymmetricKey";
086:
087: /**
088: * Constants denoting type of Elements
089: */
090: public static final String STR_TYPE = "SecurityTokenReference";
091: public static final String TOKEN_TYPE = "Token";
092:
093: /** Action URIs */
094: public static final String REQUEST_SECURITY_TOKEN_ISSUE_ACTION = "http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue";
095: public static final String REQUEST_SECURITY_TOKEN_RESPONSE_ISSUE_ACTION = "http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue";
096:
097: /** computed key PSHA1 */
098: public static final String CK_PSHA1 = "http://schemas.xmlsoap.org/ws/2005/02/trust/CK/PSHA1";
099:
100: /** computed key HASH */
101: public static final String CK_HASH = "http://schemas.xmlsoap.org/ws/2005/02/trust/CK/HASH";
102:
103: /**
104: * The default value for AppliesTo if appliesTo is not specified.
105: */
106: public static final String DEFAULT_APPLIESTO = "default";
107:
108: /**
109: * Property name for the STS WSDL location URL to be set on the client side
110: */
111: public static final String PROPERTY_URL = "WSTRUST_PROPERTY_URL";
112: /**
113: * Property name for the STS port name to be set on the client side
114: */
115: public static final String PROPERTY_PORT_NAME = "WSTRUST_PROPERTY_PORT_NAME";
116: /**
117: * Property name for the STS service name to be set on the client side
118: */
119: public static final String PROPERTY_SERVICE_NAME = "WSTRUST_PROPERTY_SERVICE_NAME";
120:
121: /**
122: * Property name for the STS end point URL to be set on the client side
123: */
124: public static final String PROPERTY_SERVICE_END_POINT = "STS_END_POINT";
125:
126: /**
127: * List of STS Properties
128: */
129: public static enum STS_PROPERTIES {
130: PROPERTY_URL, PROPERTY_PORT_NAME, PROPERTY_SERVICE_NAME, PROPERTY_SERVICE_END_POINT
131: };
132:
133: public static final String IS_TRUST_MESSAGE = "isTrustMessage";
134: }
|