The service implementation should override this method to perform the actual protocol-specific connection attempt. The default implementation of the connect method calls this method as needed. The protocolConnect method should return false if a user name o
(String host, int port, String user, String password)
| 425 | * @exception MessagingException for non-authentication failures |
| 426 | */ |
| 427 | protected boolean protocolConnect(String host, int port, String user, |
| 428 | String password) throws MessagingException { |
| 429 | return false; |
| 430 | } |
| 431 | |
| 432 | /** |
| 433 | * Is this service currently connected? <p> |