1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
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  }