1 /* 2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 * Copyright (C) 2004-2009 Frederico Caldeira Knabben 4 * 5 * == BEGIN LICENSE == 6 * 7 * Licensed under the terms of any of the following licenses at your 8 * choice: 9 * 10 * - GNU General Public License Version 2 or later (the "GPL") 11 * http://www.gnu.org/licenses/gpl.html 12 * 13 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 * http://www.gnu.org/licenses/lgpl.html 15 * 16 * - Mozilla Public License Version 1.1 or later (the "MPL") 17 * http://www.mozilla.org/MPL/MPL-1.1.html 18 * 19 * == END LICENSE == 20 */ 21 package net.fckeditor.connector; 22 23 /** 24 * Some messages for the {@link ConnectorServlet}. 25 * 26 * @version $Id: Messages.java 3840 2009-07-08 20:29:46Z mosipov $ 27 */ 28 public class Messages { 29 30 /** Error message NOT AUTHORIZED FOR FILE UPLOAD */ 31 public static final String NOT_AUTHORIZED_FOR_UPLOAD = "The current user isn't authorized for file upload!"; 32 33 /** Error message NOT AUTHORIZED FOR FILE BROWSING */ 34 public static final String NOT_AUTHORIZED_FOR_BROWSING = "The current user isn't authorized for file browsing!"; 35 36 /** Error message INVALID COMMAND SUPPLIED */ 37 public static final String INVALID_COMMAND = "Invalid command specified"; 38 39 /** Error message INVALID TYPE SUPPLIED */ 40 public static final String INVALID_TYPE = "Invalid resource type specified"; 41 42 /** Error message INVALID CURRENT FOLDER */ 43 public static final String INVALID_CURRENT_FOLDER = "Invalid current folder specified"; 44 45 }