Interface EnumerationInfoManager


public interface EnumerationInfoManager
This interface defines the method that enumeration info providers can use to reset their cached enumerations.

Supported API: true

Extendable: false
  • Method Details

    • resetEnumeration

      void resetEnumeration(EnumerationInfoProvider provider)
      This should be called by the EnumerationInfoProvider to flush it's dynamic enumeration from the manager's cache. This method will typically be called when the enumeration has changed. The enumeration manager will flush the enumeration from it's cache and call EnumerationInfoProvider.getEnumerationInfo() to re-retrieve the enumeration information.
      Parameters:
      provider - The provider of the enumeration to be flushed. The initialization string from the passed provider will be used to determine which enumeration will be flushed. Must not be null.

      Supported API: true