KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > coldcore > coloradoftp > session > LoginState


1 package com.coldcore.coloradoftp.session;
2
3 /**
4  * User login state.
5  * This is used by FTP commands to query user's login state.
6  *
7  * Once user logs in he/she is assigned a proper login state which must not
8  * be removed from the session ever (even after QUIT command).
9  * The only way to clear login state is to disconnect a control connection.
10  *
11  *
12  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
13  */

14 public enum LoginState {
15   ANONYMOUS, //Anonymous login
16
REGULAR //Regular registered user
17
}
18
Popular Tags