All Packages Class Hierarchy This Package Previous Next Index
Class com.oroinc.net.pop3.POP3Command
java.lang.Object
|
+----com.oroinc.net.pop3.POP3Command
- public final class POP3Command
- extends Object
POP3Command stores POP3 command code constants.
Copyright © 1997 Original Reusable Objects, Inc.
All rights reserved.
-
APOP
- Authorization.
-
DELE
- Delete message(s).
-
LIST
- List message(s).
-
NOOP
- No operation.
-
PASS
- Send password.
-
QUIT
- Quit session.
-
RETR
- Retrieve message(s).
-
RSET
- Reset session.
-
STAT
- Get status.
-
TOP
- Retrieve top number lines from message.
-
UIDL
- List unique message identifier(s).
-
USER
- Send user name.
-
getCommand(int)
- Get the POP3 protocol string command corresponding to a command code.
USER
public static final int USER
- Send user name.
PASS
public static final int PASS
- Send password.
QUIT
public static final int QUIT
- Quit session.
STAT
public static final int STAT
- Get status.
LIST
public static final int LIST
- List message(s).
RETR
public static final int RETR
- Retrieve message(s).
DELE
public static final int DELE
- Delete message(s).
NOOP
public static final int NOOP
- No operation. Used as a session keepalive.
RSET
public static final int RSET
- Reset session.
APOP
public static final int APOP
- Authorization.
TOP
public static final int TOP
- Retrieve top number lines from message.
UIDL
public static final int UIDL
- List unique message identifier(s).
getCommand
public static final String getCommand(int command)
- Get the POP3 protocol string command corresponding to a command code.
- Returns:
- The POP3 protocol string command corresponding to a command code.
All Packages Class Hierarchy This Package Previous Next Index