All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.network.mail.pop3.event.ConfigEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.network.mail.pop3.event.ConfigEvent
- public class ConfigEvent
- extends EventObject
The event is thrown by:
-
UserInterfaceBean
to set user, pop3 server
and socks server options.
The event is caught by:
-
CoreProtocolBean
to receive new settings for
user, pop3 server and socks server options.
- Author:
- Mohit M Sant
- See Also:
- ConfigListener
-
SET_POP3_SERVER
-
-
SET_SOCKS_SERVER
-
-
SET_SOCKSIFIED
-
-
SET_USER_OPTIONS
-
-
ConfigEvent(ServerOptions, ServerOptions, UserOptions, boolean, Object)
- Constructor for
ConfigEvent
.
-
getPOP3Server()
- Returns the POP3 server.
-
getSocksServer()
- Returns the socks server.
-
getUserOptions()
- Returns the user options settings.
-
isSocksified()
- Returns 'true' if socks server is being used.
SET_SOCKS_SERVER
public static final int SET_SOCKS_SERVER
SET_POP3_SERVER
public static final int SET_POP3_SERVER
SET_USER_OPTIONS
public static final int SET_USER_OPTIONS
SET_SOCKSIFIED
public static final int SET_SOCKSIFIED
ConfigEvent
public ConfigEvent(ServerOptions pop3,
ServerOptions socks,
UserOptions user,
boolean socksified,
Object source)
- Constructor for
ConfigEvent
.
- Parameters:
- pop3 - POP3 server details.
- socks - socks server details.
- user - user details.
- socksified - 'true' is socksification is required, false otherwise.
- source - creator of this event.
getPOP3Server
public ServerOptions getPOP3Server()
- Returns the POP3 server.
- Returns:
- POP3 server.
getSocksServer
public ServerOptions getSocksServer()
- Returns the socks server.
- Returns:
- socks server.
getUserOptions
public UserOptions getUserOptions()
- Returns the user options settings.
- Returns:
- user options.
isSocksified
public boolean isSocksified()
- Returns 'true' if socks server is being used.
- Returns:
- true if socksified, false otherwise.
All Packages Class Hierarchy This Package Previous Next Index