Interface AccountChangeNotifier
-
- All Known Implementing Classes:
AccountChangeNotifierImpl
public interface AccountChangeNotifierDefines interface for notifying listeners of account change events.- Author:
- Daniel Bernstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccountChanged(String account)Notifies listeners that an account had changed.voidrootUsersChanged()Notifies listeners that a root user's status has changed: a root user was added, removed, or changed.voidstorageProviderCacheOnNodeChanged(String account)Notifies listeners that a node's cached storage provider information has changed.voidstorageProvidersChanged(String account)Notifies listeners that one or more storage providers associated with an account has changed.voiduserStoreChanged(String account)Notifies listeners that the set of users associated with an account have changed
-
-
-
Method Detail
-
accountChanged
void accountChanged(String account)
Notifies listeners that an account had changed.- Parameters:
account-
-
storageProvidersChanged
void storageProvidersChanged(String account)
Notifies listeners that one or more storage providers associated with an account has changed.- Parameters:
account-
-
userStoreChanged
void userStoreChanged(String account)
Notifies listeners that the set of users associated with an account have changed- Parameters:
account-
-
rootUsersChanged
void rootUsersChanged()
Notifies listeners that a root user's status has changed: a root user was added, removed, or changed.
-
storageProviderCacheOnNodeChanged
void storageProviderCacheOnNodeChanged(String account)
Notifies listeners that a node's cached storage provider information has changed.- Parameters:
account-
-
-