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

com.tvd12.ezymq.mosquitto.setting.EzyMosquittoEndpointSetting Maven / Gradle / Ivy

The newest version!
package com.tvd12.ezymq.mosquitto.setting;

import com.tvd12.ezyfox.builder.EzyBuilder;

import lombok.Getter;

@Getter
public class EzyMosquittoEndpointSetting {

    protected final String topic;

    public EzyMosquittoEndpointSetting(String topic) {
        this.topic = topic;
    }

    @SuppressWarnings("unchecked")
    public abstract static class Builder>
        implements EzyBuilder {

        protected String topic;

        public B topic(String topic) {
            this.topic = topic;
            return (B) this;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy