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

com.jeesuite.confcenter.EnvironmentChangeEvent Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy