ReplyCodes.java revision 70cc38904cf8c9abc6f9994cec83e2b7685a607d
1/*
2 * Copyright 2007 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.mockftpserver.core.command;
17
18/**
19 * Reply Code constants.
20 *
21 * @version $Revision$ - $Date$
22 *
23 * @author Chris Mair
24 */
25public final class ReplyCodes {
26
27    public static final int ABOR_OK = 226;
28    public static final int ACCT_OK = 230;
29    public static final int ALLO_OK = 200;
30    public static final int CDUP_OK = 250;
31    public static final int CWD_OK = 250;
32    public static final int DELE_OK = 250;
33    public static final int HELP_OK = 214;
34    public static final int MKD_OK = 257;
35    public static final int MODE_OK = 200;
36    public static final int NOOP_OK = 200;
37    public static final int PASS_OK = 230;
38    public static final int PASS_LOG_IN_FAILED = 530;
39    public static final int PASV_OK = 227;
40    public static final int PORT_OK = 200;
41    public static final int PWD_OK = 257;
42    public static final int QUIT_OK = 221;
43    public static final int REIN_OK = 220;
44    public static final int REST_OK = 350;
45    public static final int RMD_OK = 250;
46    public static final int RNFR_OK = 350;
47    public static final int RNTO_OK = 250;
48    public static final int SITE_OK = 200;
49    public static final int SMNT_OK = 250;
50    public static final int STAT_SYSTEM_OK = 211;
51    public static final int STAT_FILE_OK = 213;
52    public static final int STRU_OK = 200;
53    public static final int SYST_OK = 215;
54    public static final int TYPE_OK = 200;
55    public static final int USER_LOGGED_IN_OK = 230;
56    public static final int USER_NEED_PASSWORD_OK = 331;
57    public static final int USER_NO_SUCH_USER = 530;
58
59    public static final int SEND_DATA_INITIAL_OK = 150;
60    public static final int SEND_DATA_FINAL_OK = 226;
61
62    public static final int CONNECT_OK = 220;
63
64    // GENERIC
65    public static final int SYSTEM_ERROR = 451;
66    public static final int COMMAND_SYNTAX_ERROR = 501;
67    public static final int ILLEGAL_STATE = 503;       // Bad sequence
68    public static final int NOT_LOGGED_IN = 530;
69    public static final int EXISTING_FILE_ERROR = 550;
70    public static final int NEW_FILE_ERROR = 553;
71    public static final int FILENAME_NOT_VALID = 553;
72
73
74    /**
75     * Private constructor. This class should not be instantiated.
76     */
77    private ReplyCodes() {
78    }
79
80}
81