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

org.sdn.api.response.SubscribeEventResponse Maven / Gradle / Ivy

package org.sdn.api.response;

/**
 * User: humucai
 * Date: 2018/11/29
 * Time: 17:12
 */
public class SubscribeEventResponse extends OpenResponse {

    private boolean ok;
    private String msg;

    public boolean isOk() {
        return ok;
    }

    public void setOk(boolean ok) {
        this.ok = ok;
    }

    @Override
    public String getMsg() {
        return msg;
    }

    @Override
    public void setMsg(String msg) {
        this.msg = msg;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy