001    /**
002     * Copyright (c) 2000-2010 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_PORTLET = "javax.portlet.portlet";
032    
033            public static final String JAVAX_PORTLET_REQUEST = "javax.portlet.request";
034    
035            public static final String JAVAX_PORTLET_RESPONSE =
036                    "javax.portlet.response";
037    
038            public static final String JAVAX_PORTLET_SERVLET_CONTEXT =
039                    "javax.portlet.servletContext";
040    
041            public static final String JAVAX_PORTLET_SHORT_TITLE =
042                    "javax.portlet.short-title";
043    
044            public static final String JAVAX_PORTLET_TITLE = "javax.portlet.title";
045    
046            public static final String JAVAX_SERVLET_FORWARD_CONTEXT_PATH =
047                    "javax.servlet.forward.context_path";
048    
049            public static final String JAVAX_SERVLET_FORWARD_PATH_INFO =
050                    "javax.servlet.forward.path_info";
051    
052            public static final String JAVAX_SERVLET_FORWARD_QUERY_STRING =
053                    "javax.servlet.forward.query_string";
054    
055            public static final String JAVAX_SERVLET_FORWARD_REQUEST_URI =
056                    "javax.servlet.forward.request_uri";
057    
058            public static final String JAVAX_SERVLET_FORWARD_SERVLET_PATH =
059                    "javax.servlet.forward.servlet_path";
060    
061            public static final String JAVAX_SERVLET_INCLUDE = "javax.servlet.include.";
062    
063            public static final String JAVAX_SERVLET_INCLUDE_CONTEXT_PATH =
064                    "javax.servlet.include.context_path";
065    
066            public static final String JAVAX_SERVLET_INCLUDE_PATH_INFO =
067                    "javax.servlet.include.path_info";
068    
069            public static final String JAVAX_SERVLET_INCLUDE_REQUEST_URI =
070                    "javax.servlet.include.request_uri";
071    
072            public static final String JAVAX_SERVLET_INCLUDE_SERVLET_PATH =
073                    "javax.servlet.include.servlet_path";
074    
075            public static final String JAVAX_SERVLET_INCLUDE_QUERY_STRING =
076                    "javax.servlet.include.query_string";
077    
078    }