View Javadoc

1   /*
2    * Copyright 2008 University Corporation for Advanced Internet Development, Inc.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.opensaml.ws.wsfed;
18  
19  /** WS-Federation Constants. */
20  public class WSFedConstants {
21  
22      /** WSFED 1.1 protocol XML namespace. */
23      public static final String WSFED11P_NS = "http://schemas.xmlsoap.org/ws/2005/02/trust";
24  
25      /** WSFED 1.X Protocol QName prefix. */
26      public static final String WSFED1P_PREFIX = "wst";
27  
28      /** WSFED 1.X Policy XML namespace. */
29      public static final String WSPOLICY_NS = "http://schemas.xmlsoap.org/ws/2004/09/policy";
30  
31      /** WSFED 1.X Policy QName prefix. */
32      public static final String WSPOLICY_PREFIX = "wsp";
33  
34      /** WSFED 1.X Address XML namespace. */
35      public static final String WSADDRESS_NS = "http://schemas.xmlsoap.org/ws/2004/08/addressing";
36  
37      /** WSFED 1.X Address QName prefix. */
38      public static final String WSADDRESS_PREFIX = "wsa";
39  
40  }