
com.baidu.disconf.client.addons.properties.PropertiesReloadedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconf-client Show documentation
Show all versions of disconf-client Show documentation
https://github.com/knightliao/disconf/tree/master/disconf-client
package com.baidu.disconf.client.addons.properties;
import java.util.Properties;
public class PropertiesReloadedEvent {
final ReloadableProperties target;
final Properties oldProperties;
public PropertiesReloadedEvent(ReloadableProperties target, Properties oldProperties) {
this.target = target;
this.oldProperties = oldProperties;
}
public ReloadableProperties getTarget() {
return target;
}
public Properties getOldProperties() {
return oldProperties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy