001    /**
002     * Copyright (c) 2000-present 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.servlet;
016    
017    /**
018     * @author Peter Fellwock
019     */
020    public class PortalWebResourceConstants {
021    
022            public static final String RESOURCE_TYPE_CSS = "css";
023    
024            public static final String RESOURCE_TYPE_EDITOR_ALLOYEDITOR = "alloyeditor";
025    
026            /**
027             * @deprecated As of 7.0.0, with no direct replacement
028             */
029            @Deprecated
030            public static final String RESOURCE_TYPE_EDITOR_BBCODEEDITOR =
031                    "bbcodeeditor";
032    
033            public static final String RESOURCE_TYPE_EDITOR_CKEDITOR = "ckeditor";
034    
035            public static final String RESOURCE_TYPE_EDITOR_SIMPLEEDITOR =
036                    "simpleeditor";
037    
038            public static final String RESOURCE_TYPE_EDITOR_TINYMCEEDITOR =
039                    "tinymceeditor";
040    
041            public static final String RESOURCE_TYPE_JS = "js";
042    
043            public static final String RESOURCE_TYPE_JS_BUNDLE_CONFIG =
044                    "js_bundle_config";
045    
046            public static final String RESOURCE_TYPE_JS_LOADER_MODULES =
047                    "js_loader_modules";
048    
049            public static final String RESOURCE_TYPE_THEME_ADMIN = "theme_admin";
050    
051            public static final String RESOURCE_TYPE_THEME_CLASSIC = "theme_classic";
052    
053            public static final String RESOURCE_TYPE_THEME_CONTRIBUTOR =
054                    "theme_contributor";
055    
056            public static final String RESOURCE_TYPE_THEMES = "themes";
057    
058    }