Hello,
I am trying to process configuration changes from the WebUI. I found the method
handleConfigurationUpdate
of the
BaseThingHandler
I reused it in my class but it never gets called. Why?
@Override
public void handleConfigurationUpdate(Map<String, Object> configurationParameters) {
}
My use case is, that if a user has entered a wrong configuration in a Thing, that he is able to change it afterwards without deleting the thing. Any change in the WebUI does not get reflected in my config class neither is the supposed method called.
What am I missing? Could find any specific in the documentation about it.