View Javadoc

1   /*
2    * $Id: Globals.java,v 1.1 2006/09/20 17:55:20 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.1 $ $Date: 2006/09/20 17:55:20 $
10   */
11  public class Globals {
12  
13      /**
14       * The request attribute under which the request URI of the included servlet
15       * is stored on an included dispatcher request.
16       */
17      public static final String INCLUDE_REQUEST_URI_ATTR = "javax.servlet.include.request_uri";
18  
19      /**
20       * The request attribute under which the context path of the included
21       * servlet is stored on an included dispatcher request.
22       */
23      public static final String INCLUDE_CONTEXT_PATH_ATTR = "javax.servlet.include.context_path";
24  
25      /**
26       * The request attribute under which the path info of the included servlet
27       * is stored on an included dispatcher request.
28       */
29      public static final String INCLUDE_PATH_INFO_ATTR = "javax.servlet.include.path_info";
30  
31      /**
32       * The request attribute under which the servlet path of the included
33       * servlet is stored on an included dispatcher request.
34       */
35      public static final String INCLUDE_SERVLET_PATH_ATTR = "javax.servlet.include.servlet_path";
36  
37      /**
38       * The request attribute under which the query string of the included
39       * servlet is stored on an included dispatcher request.
40       */
41      public static final String INCLUDE_QUERY_STRING_ATTR = "javax.servlet.include.query_string";
42  
43      /**
44       * The request attribute under which the original request URI is stored on
45       * an forwarded dispatcher request.
46       */
47      public static final String FORWARD_REQUEST_URI_ATTR = "javax.servlet.forward.request_uri";
48  
49      /**
50       * The request attribute under which the original context path is stored on
51       * an forwarded dispatcher request.
52       */
53      public static final String FORWARD_CONTEXT_PATH_ATTR = "javax.servlet.forward.context_path";
54  
55      /**
56       * The request attribute under which the original path info is stored on an
57       * forwarded dispatcher request.
58       */
59      public static final String FORWARD_PATH_INFO_ATTR = "javax.servlet.forward.path_info";
60  
61      /**
62       * The request attribute under which the original servlet path is stored on
63       * an forwarded dispatcher request.
64       */
65      public static final String FORWARD_SERVLET_PATH_ATTR = "javax.servlet.forward.servlet_path";
66  
67      /**
68       * The request attribute under which the original query string is stored on
69       * an forwarded dispatcher request.
70       */
71      public static final String FORWARD_QUERY_STRING_ATTR = "javax.servlet.forward.query_string";
72  
73      /**
74       * The request attribute under which we forward a servlet name to an error
75       * page.
76       */
77      public static final String SERVLET_NAME_ATTR = "javax.servlet.error.servlet_name";
78  
79  }