001 /*
002 * Copyright 2010 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package com.hs.mail.imap.message.response;
017
018 /**
019 *
020 * @author Won Chul Doh
021 * @since Mar 19, 2010
022 *
023 */
024 public interface HumanReadableText {
025
026 public static final String GREETINGS = "* OK Hedwig ready.\r\n";
027
028 public static final String BYE = "IMAP4rev1 Server logging out.";
029
030 public static final String FAILED_TO_CREATE_INBOX = "Cannot create special mailbox INBOX.";
031
032 public static final String FAILED_TO_DELETE_INBOX = "Cannot delete special mailbox INBOX.";
033
034 public static final String INVADE_STRUCTURE = "New mailbox would invade mailbox structure.";
035
036 public static final String INVALID_COMMAND = "Command not valid in this state.";
037
038 public static final String MAILBOX_DELETED_SIGN_OFF = "Selected mailbox has been deleted by another session.";
039
040 public static final String MAILBOX_EXISTS = "Mailbox already exists.";
041
042 public static final String MAILBOX_IS_READ_ONLY = "Mailbox is read only.";
043
044 public static final String MAILBOX_NOT_FOUND = "No such mailbox.";
045
046 public static final String MAILBOX_NOT_SELECTABLE = "Mailbox is not selectable.";
047
048 public static final String NAMESPACE_NOT_EXIST = "No such namespace";
049
050 public static final String NO_SUCH_QUOTA_ROOT = "No such quota root.";
051
052 public static final String UNSUPPORTED_AUTHENTICATION_MECHANISM = "Authentication mechanism is unsupported.";
053
054
055 }