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

com.github.bingoohuang.settingbeanorm.SettingUpdateEvent Maven / Gradle / Ivy

package com.github.bingoohuang.settingbeanorm;

import lombok.Value;

@Value
public class SettingUpdateEvent {
    private final T oldSettingBbean;
    private final T newSettingBean;

    public SettingUpdateEvent(T oldSettingBbean, T newSettingBean) {
        this.oldSettingBbean = oldSettingBbean;
        this.newSettingBean = newSettingBean;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy