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

org.noear.water.protocol.model.message.BrokerVo Maven / Gradle / Ivy

There is a newer version: 2.14.2
Show newest version
package org.noear.water.protocol.model.message;

/**
 * @author noear 2021/11/4 created
 */
public class BrokerVo implements BrokerMeta {
    public String tag;
    public String broker;
    public String source;
    public int keep_days;

    @Override
    public String getTag() {
        return tag;
    }

    @Override
    public String getBroker() {
        return broker;
    }

    @Override
    public String getSource() {
        return source;
    }

    @Override
    public int getKeepDays() {
        return keep_days;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy