001    /**
002     * Copyright (c) 2000-2012 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    /**
018     * @author Juan Fernández
019     * @author Eduardo García
020     */
021    public class PortletDisplayTemplateConstants {
022    
023            public static final String ASSET_PUBLISHER_HELPER = "assetPublisherHelper";
024    
025            public static final String DDM_TEMPLATE_ID = "ddmTemplateId";
026    
027            public static final String ENTRIES = "entries";
028    
029            public static final String ENTRY = "entry";
030    
031            public static final String FREEMARKER_SERVLET_APPLICATION =
032                    "__FreeMarkerServlet.Application__";
033    
034            public static final String FREEMARKER_SERVLET_REQUEST =
035                    "__FreeMarkerServlet.Request__";
036    
037            public static final String LOCALE = "locale";
038    
039            public static final String RENDER_REQUEST ="renderRequest";
040    
041            public static final String RENDER_RESPONSE ="renderResponse";
042    
043            public static final String REQUEST = "request";
044    
045            public static final String REQUEST_HASH= "requestHash";
046    
047            public static final String TAGLIB_LIFERAY = "taglibLiferay";
048    
049            public static final String TAGLIB_LIFERAY_HASH = "taglibLiferayHash";
050    
051            public static final String THEME = "theme";
052    
053            public static final String THEME_DISPLAY = "themeDisplay";
054    
055    }