Interface AppSettingAddedListener

All Superinterfaces:
EventListener

public interface AppSettingAddedListener extends EventListener
This listener is executed when a setting is added to an application.
Author:
Jeremy Wiesner [[email protected]]
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onSettingAdded(App app, String settingKey, Object settingValue)
    Code to execute right after a setting is added (could be updated or added for the first time).
  • Method Details

    • onSettingAdded

      void onSettingAdded(App app, String settingKey, Object settingValue)
      Code to execute right after a setting is added (could be updated or added for the first time).
      Parameters:
      app - the app object
      settingKey - the key of the setting to add
      settingValue - the value of the setting to add