org.microprofileext.config.event.ChangeEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-events Show documentation
Show all versions of config-events Show documentation
A library to make it easy to add config events
package org.microprofileext.config.event;
import java.io.Serializable;
import java.util.Optional;
import lombok.AllArgsConstructor;
import lombok.Data;
/**
* an event on config element
* @author Phillip Kruger
*/
@Data @AllArgsConstructor
public class ChangeEvent implements Serializable {
private Type type;
private String key;
private Optional oldValue;
private String newValue;
private String fromSource;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy