Module com.erudika.para.core
Package com.erudika.para.core.listeners
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 [jswiesner@gmail.com]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonSettingAdded(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 Detail
-
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 objectsettingKey- the key of the setting to addsettingValue- the value of the setting to add
-
-