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.portlet.portletdisplaytemplate.util;
016    
017    import com.liferay.portal.kernel.template.TemplateConstants;
018    
019    /**
020     * @author Juan Fern??ndez
021     * @author Eduardo Garc??a
022     */
023    public class PortletDisplayTemplateConstants {
024    
025            public static final String ASSET_PUBLISHER_HELPER = "assetPublisherHelper";
026    
027            public static final String CURRENT_URL = "currentURL";
028    
029            public static final String ENTRIES = "entries";
030    
031            public static final String ENTRY = "entry";
032    
033            public static final String FREEMARKER_SERVLET_APPLICATION =
034                    "__FreeMarkerServlet.Application__";
035    
036            public static final String FREEMARKER_SERVLET_REQUEST =
037                    "__FreeMarkerServlet.Request__";
038    
039            public static final String LOCALE = "locale";
040    
041            public static final String PORTLET_PREFERENCES = "portletPreferences";
042    
043            public static final String RENDER_REQUEST ="renderRequest";
044    
045            public static final String RENDER_RESPONSE ="renderResponse";
046    
047            public static final String REQUEST = "request";
048    
049            public static final String REQUEST_HASH = "requestHash";
050    
051            public static final String TAGLIB_LIFERAY = "taglibLiferay";
052    
053            public static final String TAGLIB_LIFERAY_HASH = "taglibLiferayHash";
054    
055            public static final String TEMPLATE_ID = TemplateConstants.TEMPLATE_ID;
056    
057            public static final String THEME = "theme";
058    
059            public static final String THEME_DISPLAY = "themeDisplay";
060    
061    }