| |
|
| java.lang.Object org.apache.commons.net.pop3.POP3Command
POP3Command | final public class POP3Command (Code) | | POP3Command stores POP3 command code constants.
author: Daniel F. Savarese |
Field Summary | |
final public static int | APOP Authorization. | final public static int | DELE Delete message(s). | final public static int | LIST List message(s). | final public static int | NOOP No operation. | final public static int | PASS Send password. | final public static int | QUIT Quit session. | final public static int | RETR Retrieve message(s). | final public static int | RSET Reset session. | final public static int | STAT Get status. | final public static int | TOP Retrieve top number lines from message. | final public static int | UIDL List unique message identifier(s). | final public static int | USER Send user name. | final static String[] | _commands |
Method Summary | |
final public static String | getCommand(int command) Get the POP3 protocol string command corresponding to a command code. |
APOP | final public static int APOP(Code) | | Authorization. **
|
DELE | final public static int DELE(Code) | | Delete message(s). **
|
LIST | final public static int LIST(Code) | | List message(s). **
|
NOOP | final public static int NOOP(Code) | | No operation. Used as a session keepalive. **
|
PASS | final public static int PASS(Code) | | Send password. **
|
QUIT | final public static int QUIT(Code) | | Quit session. **
|
RETR | final public static int RETR(Code) | | Retrieve message(s). **
|
RSET | final public static int RSET(Code) | | Reset session. **
|
STAT | final public static int STAT(Code) | | Get status. **
|
TOP | final public static int TOP(Code) | | Retrieve top number lines from message. **
|
UIDL | final public static int UIDL(Code) | | List unique message identifier(s). **
|
USER | final public static int USER(Code) | | Send user name. **
|
getCommand | final public static String getCommand(int command)(Code) | | Get the POP3 protocol string command corresponding to a command code.
The POP3 protocol string command corresponding to a command code. |
|
|
|