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_SHORT_TITLE =
41          "javax.portlet.short-title";
42  
43      public static final String JAVAX_PORTLET_TITLE = "javax.portlet.title";
44  
45      public static final String JAVAX_SERVLET_FORWARD_CONTEXT_PATH =
46          "javax.servlet.forward.context_path";
47  
48      public static final String JAVAX_SERVLET_FORWARD_PATH_INFO =
49          "javax.servlet.forward.path_info";
50  
51      public static final String JAVAX_SERVLET_FORWARD_QUERY_STRING =
52          "javax.servlet.forward.query_string";
53  
54      public static final String JAVAX_SERVLET_FORWARD_REQUEST_URI =
55          "javax.servlet.forward.request_uri";
56  
57      public static final String JAVAX_SERVLET_FORWARD_SERVLET_PATH =
58          "javax.servlet.forward.servlet_path";
59  
60      public static final String JAVAX_SERVLET_INCLUDE = "javax.servlet.include.";
61  
62      public static final String JAVAX_SERVLET_INCLUDE_CONTEXT_PATH =
63          "javax.servlet.include.context_path";
64  
65      public static final String JAVAX_SERVLET_INCLUDE_PATH_INFO =
66          "javax.servlet.include.path_info";
67  
68      public static final String JAVAX_SERVLET_INCLUDE_REQUEST_URI =
69          "javax.servlet.include.request_uri";
70  
71      public static final String JAVAX_SERVLET_INCLUDE_SERVLET_PATH =
72          "javax.servlet.include.servlet_path";
73  
74      public static final String JAVAX_SERVLET_INCLUDE_QUERY_STRING =
75          "javax.servlet.include.query_string";
76  
77  }