/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.kernel.servlet; /** * @author Peter Fellwock */ public class PortalWebResourceConstants { public static final String RESOURCE_TYPE_CSS = "css"; public static final String RESOURCE_TYPE_EDITOR_ALLOYEDITOR = "alloyeditor"; /** * @deprecated As of 7.0.0, with no direct replacement */ @Deprecated public static final String RESOURCE_TYPE_EDITOR_BBCODEEDITOR = "bbcodeeditor"; public static final String RESOURCE_TYPE_EDITOR_CKEDITOR = "ckeditor"; public static final String RESOURCE_TYPE_EDITOR_SIMPLEEDITOR = "simpleeditor"; public static final String RESOURCE_TYPE_EDITOR_TINYMCEEDITOR = "tinymceeditor"; public static final String RESOURCE_TYPE_JS = "js"; public static final String RESOURCE_TYPE_JS_BUNDLE_CONFIG = "js_bundle_config"; public static final String RESOURCE_TYPE_JS_LOADER_MODULES = "js_loader_modules"; public static final String RESOURCE_TYPE_THEME_ADMIN = "theme_admin"; public static final String RESOURCE_TYPE_THEME_CLASSIC = "theme_classic"; public static final String RESOURCE_TYPE_THEME_CONTRIBUTOR = "theme_contributor"; public static final String RESOURCE_TYPE_THEMES = "themes"; }