Example #1
0
 private synchronized void notifyListener() {
   LOG.warning(
       "configuration file was changed (created/altered/deleted) under '"
           + this.confFilePath
           + "', passing the new configuration value to the config-file-listener: "
           + configListener.getClass().getCanonicalName());
   C conf = ConfigurationManager.load(confClass);
   configListener.handleConfigChange(conf);
 }