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 PASV_OK = 227;
39    public static final int PORT_OK = 200;
40    public static final int PWD_OK = 257;
41    public static final int QUIT_OK = 221;
42    public static final int REIN_OK = 220;
43    public static final int REST_OK = 350;
44    public static final int RMD_OK = 250;
45    public static final int RNFR_OK = 350;
46    public static final int RNTO_OK = 250;
47    public static final int SITE_OK = 200;
48    public static final int SMNT_OK = 250;
49    public static final int STAT_SYSTEM_OK = 211;
50    public static final int STAT_FILE_OK = 213;
51    public static final int STRU_OK = 200;
52    public static final int SYST_OK = 215;
53    public static final int TYPE_OK = 200;
54    public static final int USER_LOGGED_IN_OK = 230;
55    public static final int USER_NEED_PASSWORD_OK = 331;
56
57    public static final int SEND_DATA_INITIAL_OK = 150;
58    public static final int SEND_DATA_FINAL_OK = 226;
59
60    public static final int CONNECT_OK = 220;
61
62    /**
63     * Private constructor. This class should not be instantiated.
64     */
65    private ReplyCodes() {
66    }
67
68}
69