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

org.microprofileext.config.event.ChangeEvent Maven / Gradle / Ivy

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