com.jeesuite.confcenter.EnvironmentChangeEvent Maven / Gradle / Ivy
package com.jeesuite.confcenter;
import java.util.Set;
import org.springframework.context.ApplicationEvent;
public class EnvironmentChangeEvent extends ApplicationEvent {
private static final long serialVersionUID = 1L;
private Set keys;
public EnvironmentChangeEvent(Set keys) {
super(keys);
this.keys = keys;
}
/**
* @return the keys
*/
public Set getKeys() {
return keys;
}
}