001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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    }