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            public static final String RESOURCE_TYPE_EDITOR_BBCODEEDITOR =
027                    "bbcodeeditor";
028    
029            public static final String RESOURCE_TYPE_EDITOR_CKEDITOR = "ckeditor";
030    
031            public static final String RESOURCE_TYPE_EDITOR_SIMPLEEDITOR =
032                    "simpleeditor";
033    
034            public static final String RESOURCE_TYPE_EDITOR_TINYMCEEDITOR =
035                    "tinymceeditor";
036    
037            public static final String RESOURCE_TYPE_JS = "js";
038    
039            public static final String RESOURCE_TYPE_JS_BUNDLE_CONFIG =
040                    "js_bundle_config";
041    
042            public static final String RESOURCE_TYPE_JS_LOADER_MODULES =
043                    "js_loader_modules";
044    
045            public static final String RESOURCE_TYPE_THEME_ADMIN = "theme_admin";
046    
047            public static final String RESOURCE_TYPE_THEME_CLASSIC = "theme_classic";
048    
049            public static final String RESOURCE_TYPE_THEME_CONTRIBUTOR =
050                    "theme_contributor";
051    
052            public static final String RESOURCE_TYPE_THEMES = "themes";
053    
054    }