Interface AccountChangeNotifier

All Known Implementing Classes:
AccountChangeNotifierImpl

public interface AccountChangeNotifier
Defines interface for notifying listeners of account change events.
Author:
Daniel Bernstein
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notifies listeners that an account had changed.
    void
    Notifies listeners that a root user's status has changed: a root user was added, removed, or changed.
    void
    Notifies listeners that a node's cached storage provider information has changed.
    void
    Notifies listeners that one or more storage providers associated with an account has changed.
    void
    Notifies listeners that the set of users associated with an account have changed
  • Method Details

    • 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 -