001    /**
002     * Copyright (c) 2000-2010 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_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    }