A generic connect method that takes no parameters. Subclasses can implement the appropriate authentication schemes. Subclasses that need additional information might want to use some properties or might get it interactively using a popup window. If the connection is successful, an "open"
()
| 168 | * @see javax.mail.event.ConnectionEvent |
| 169 | */ |
| 170 | public void connect() throws MessagingException { |
| 171 | connect(null, null, null); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Connect to the specified address. This method provides a simple |
no test coverage detected