class AccountManager: (source)
I am responsible for managing a user's accounts.
That is, remembering what accounts are available, their settings, adding and removal of accounts, etc.
| Instance Variable | accounts |
A collection of available accounts. |
| Method | __init__ |
Undocumented |
| Method | getSnapShot |
A snapshot of all the accounts and their status. |
| Method | isEmpty |
Undocumented |
| Method | getConnectionInfo |
Undocumented |
| Method | addAccount |
Undocumented |
| Method | delAccount |
Undocumented |
| Method | connect |
|
| Method | disconnect |
Undocumented |
| Method | quit |
Undocumented |
A snapshot of all the accounts and their status.
| Returns | A list of tuples, each of the form (string:accountName, boolean:isOnline, boolean:autoLogin, string:gatewayType) | |