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

com.alibaba.spring.boot.rsocket.broker.events.AppConfigEvent Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package com.alibaba.spring.boot.rsocket.broker.events;

import com.alibaba.rsocket.events.CloudEventSupport;

/**
 * App config event
 *
 * @author leijuan
 */
public class AppConfigEvent implements CloudEventSupport {
    private String appName;
    private String key;
    private String vale;

    public AppConfigEvent() {
    }

    public AppConfigEvent(String appName, String key, String vale) {
        this.appName = appName;
        this.key = key;
        this.vale = vale;
    }

    public String getAppName() {
        return appName;
    }

    public void setAppName(String appName) {
        this.appName = appName;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getVale() {
        return vale;
    }

    public void setVale(String vale) {
        this.vale = vale;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy