| java.lang.Object org.columba.mail.pop3.POP3Store
POP3Store | public class POP3Store implements Observer(Code) | | First abstractionlayer of the POP3 Protocol. Its task is to manage the state
of the server and handle the low level connection stuff. This means open the
connection using SSL or not, login via the most secure or selected
authentication method. It also provides the capabilites to convert an POP3
uid to the index.
See Also: POP3Server author: freddy, tstich |
Constructor Summary | |
public | POP3Store(PopItem popItem) Constructor for POP3Store. |
POP3Store | public POP3Store(PopItem popItem)(Code) | | Constructor for POP3Store.
|
isSupported | protected boolean isSupported(String command) throws IOException(Code) | | Returns whether a given POP3 command is supported by the server.
|
login | protected void login() throws IOException, POP3Exception, CommandCancelledException(Code) | | Try to login a user to a given pop3 server. While the login is not
succeed, the connection to the server is opened, then a dialog box is
coming up, then the user should fill in his password. The username and
password is sended to the pop3 server. Then we recive a answer. Is the
answer is false, we try to logout from the server and closing the
connection. The we begin again with open connection, showing dialog and
so on.
Parameters: worker - used for cancel button throws: Exception - Bug number 619290 fixed. |
|
|