All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baidu.disconf.client.addons.properties.PropertiesReloadedEvent Maven / Gradle / Ivy

There is a newer version: 2.6.36
Show newest version
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