1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.kernel.util;
16  
17  /**
18   * <a href="JavaConstants.java.html"><b><i>View Source</i></b></a>
19   *
20   * @author Brian Wing Shun Chan
21   * @author Eduardo Lundgren
22   */
23  public interface JavaConstants {
24  
25      public static final String JAVAX_PORTLET_CONFIG = "javax.portlet.config";
26  
27      public static final String JAVAX_PORTLET_DESCRIPTION =
28          "javax.portlet.description";
29  
30      public static final String JAVAX_PORTLET_KEYWORDS =
31          "javax.portlet.keywords";
32  
33      public static final String JAVAX_PORTLET_PORTLET = "javax.portlet.portlet";
34  
35      public static final String JAVAX_PORTLET_REQUEST = "javax.portlet.request";
36  
37      public static final String JAVAX_PORTLET_RESPONSE =
38          "javax.portlet.response";
39  
40      public static final String JAVAX_PORTLET_SERVLET_CONTEXT =
41          "javax.portlet.servletContext";
42  
43      public static final String JAVAX_PORTLET_SHORT_TITLE =
44          "javax.portlet.short-title";
45  
46      public static final String JAVAX_PORTLET_TITLE = "javax.portlet.title";
47  
48      public static final String JAVAX_SERVLET_FORWARD_CONTEXT_PATH =
49          "javax.servlet.forward.context_path";
50  
51      public static final String JAVAX_SERVLET_FORWARD_PATH_INFO =
52          "javax.servlet.forward.path_info";
53  
54      public static final String JAVAX_SERVLET_FORWARD_QUERY_STRING =
55          "javax.servlet.forward.query_string";
56  
57      public static final String JAVAX_SERVLET_FORWARD_REQUEST_URI =
58          "javax.servlet.forward.request_uri";
59  
60      public static final String JAVAX_SERVLET_FORWARD_SERVLET_PATH =
61          "javax.servlet.forward.servlet_path";
62  
63      public static final String JAVAX_SERVLET_INCLUDE = "javax.servlet.include.";
64  
65      public static final String JAVAX_SERVLET_INCLUDE_CONTEXT_PATH =
66          "javax.servlet.include.context_path";
67  
68      public static final String JAVAX_SERVLET_INCLUDE_PATH_INFO =
69          "javax.servlet.include.path_info";
70  
71      public static final String JAVAX_SERVLET_INCLUDE_REQUEST_URI =
72          "javax.servlet.include.request_uri";
73  
74      public static final String JAVAX_SERVLET_INCLUDE_SERVLET_PATH =
75          "javax.servlet.include.servlet_path";
76  
77      public static final String JAVAX_SERVLET_INCLUDE_QUERY_STRING =
78          "javax.servlet.include.query_string";
79  
80  }