001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.util;
016    
017    /**
018     * @author Brian Wing Shun Chan
019     * @author Eduardo Lundgren
020     */
021    public interface JavaConstants {
022    
023            public static final String JAVAX_PORTLET_CONFIG = "javax.portlet.config";
024    
025            public static final String JAVAX_PORTLET_DESCRIPTION =
026                    "javax.portlet.description";
027    
028            public static final String JAVAX_PORTLET_KEYWORDS =
029                    "javax.portlet.keywords";
030    
031            public static final String JAVAX_PORTLET_LONG_TITLE =
032                    "javax.portlet.long-title";
033    
034            public static final String JAVAX_PORTLET_PORTLET = "javax.portlet.portlet";
035    
036            public static final String JAVAX_PORTLET_REQUEST = "javax.portlet.request";
037    
038            public static final String JAVAX_PORTLET_RESPONSE =
039                    "javax.portlet.response";
040    
041            public static final String JAVAX_PORTLET_SERVLET_CONTEXT =
042                    "javax.portlet.servletContext";
043    
044            public static final String JAVAX_PORTLET_SHORT_TITLE =
045                    "javax.portlet.short-title";
046    
047            public static final String JAVAX_PORTLET_TITLE = "javax.portlet.title";
048    
049            public static final String JAVAX_SERVLET_CONTEXT_TEMPDIR =
050                    "javax.servlet.context.tempdir";
051    
052            public static final String JAVAX_SERVLET_ERROR_EXCEPTION =
053                    "javax.servlet.error.exception";
054    
055            public static final String JAVAX_SERVLET_ERROR_MESSAGE =
056                    "javax.servlet.error.message";
057    
058            public static final String JAVAX_SERVLET_ERROR_REQUEST_URI =
059                    "javax.servlet.error.request_uri";
060    
061            public static final String JAVAX_SERVLET_FORWARD_CONTEXT_PATH =
062                    "javax.servlet.forward.context_path";
063    
064            public static final String JAVAX_SERVLET_FORWARD_PATH_INFO =
065                    "javax.servlet.forward.path_info";
066    
067            public static final String JAVAX_SERVLET_FORWARD_QUERY_STRING =
068                    "javax.servlet.forward.query_string";
069    
070            public static final String JAVAX_SERVLET_FORWARD_REQUEST_URI =
071                    "javax.servlet.forward.request_uri";
072    
073            public static final String JAVAX_SERVLET_FORWARD_SERVLET_PATH =
074                    "javax.servlet.forward.servlet_path";
075    
076            public static final String JAVAX_SERVLET_INCLUDE = "javax.servlet.include.";
077    
078            public static final String JAVAX_SERVLET_INCLUDE_CONTEXT_PATH =
079                    "javax.servlet.include.context_path";
080    
081            public static final String JAVAX_SERVLET_INCLUDE_PATH_INFO =
082                    "javax.servlet.include.path_info";
083    
084            public static final String JAVAX_SERVLET_INCLUDE_QUERY_STRING =
085                    "javax.servlet.include.query_string";
086    
087            public static final String JAVAX_SERVLET_INCLUDE_REQUEST_URI =
088                    "javax.servlet.include.request_uri";
089    
090            public static final String JAVAX_SERVLET_INCLUDE_SERVLET_PATH =
091                    "javax.servlet.include.servlet_path";
092    
093    }