javax.mail.event
Class ConnectionAdapter
java.lang.Object
|
+--javax.mail.event.ConnectionAdapter
All Implemented Interfaces:
ConnectionListener
public abstract class
ConnectionAdapterextends java.lang.Object
implements
ConnectionListener The adapter which receives connection events.
The methods in this class are empty; this class is provided
as a convenience for easily creating listeners by extending this class
and overriding only the methods of interest.
closed
public void closed(ConnectionEvent e)
Invoked when a Store/Folder/Transport is closed.
- e
disconnected
public void disconnected(ConnectionEvent e)
Invoked when a Store is disconnected.
Note that a folder cannot be disconnected, so a folder will not fire
this event.
- e
opened
public void opened(ConnectionEvent e)
Invoked when a Store/Folder/Transport is opened.
- e