ReplyCodes.java revision 78795c9e5e3c55fc294f011bcc129b7aab0f49b7
193102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair/*
293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * Copyright 2007 the original author or authors.
393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair *
493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * Licensed under the Apache License, Version 2.0 (the "License");
593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * you may not use this file except in compliance with the License.
693102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * You may obtain a copy of the License at
793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair *
893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair *      http://www.apache.org/licenses/LICENSE-2.0
993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair *
1093102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * Unless required by applicable law or agreed to in writing, software
1193102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * distributed under the License is distributed on an "AS IS" BASIS,
1293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * See the License for the specific language governing permissions and
1493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * limitations under the License.
1593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair */
1693102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismairpackage org.mockftpserver.core.command;
1793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair
1893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair/**
1993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * Reply Code constants.
2093102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair *
214ca3386623ce60063f27955ad1b2b1b6cbba8b09chrismair * @version $Revision$ - $Date$
2293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair *
2393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair * @author Chris Mair
2493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair */
2593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismairpublic final class ReplyCodes {
2693102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair
2793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int ABOR_OK = 226;
2893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int ACCT_OK = 230;
2993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int ALLO_OK = 200;
3093102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int CDUP_OK = 250;
3193102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int CWD_OK = 250;
3293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int DELE_OK = 250;
3393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int HELP_OK = 214;
3493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int MKD_OK = 257;
3593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int MODE_OK = 200;
3693102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int NOOP_OK = 200;
3793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int PASS_OK = 230;
3893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int PASV_OK = 227;
3993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int PORT_OK = 200;
4093102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int PWD_OK = 257;
4193102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int QUIT_OK = 221;
4293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int REIN_OK = 220;
4393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int REST_OK = 350;
4493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int RMD_OK = 250;
4593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int RNFR_OK = 350;
4693102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int RNTO_OK = 250;
4793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int SITE_OK = 200;
4893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int SMNT_OK = 250;
4993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int STAT_SYSTEM_OK = 211;
5093102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int STAT_FILE_OK = 213;
5193102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int STRU_OK = 200;
5293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int SYST_OK = 215;
5393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int TYPE_OK = 200;
5493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int USER_LOGGED_IN_OK = 230;
5593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int USER_NEED_PASSWORD_OK = 331;
5678795c9e5e3c55fc294f011bcc129b7aab0f49b7chrismair    public static final int USER_NO_SUCH_USER = 530;
5793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair
5893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int SEND_DATA_INITIAL_OK = 150;
5993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int SEND_DATA_FINAL_OK = 226;
6093102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair
6193102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    public static final int CONNECT_OK = 220;
6293102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair
6393102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    /**
6493102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair     * Private constructor. This class should not be instantiated.
6593102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair     */
6693102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    private ReplyCodes() {
6793102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair    }
6893102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair
6993102446a7b7c3d17888064b4e2e4e5cb534e6d0chrismair}
70