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

org.fabric3.binding.nats.monitor.NATSAppenderDefinition Maven / Gradle / Ivy

The newest version!
package org.fabric3.binding.nats.monitor;

import java.util.List;

import org.fabric3.monitor.spi.model.type.AppenderDefinition;

/**
 *
 */
public class NATSAppenderDefinition extends AppenderDefinition {
    private String topic;
    private List hosts;

    public NATSAppenderDefinition(String topic, List hosts) {
        super("nats");
        this.topic = topic;
        this.hosts = hosts;
    }

    public String getTopic() {
        return topic;
    }

    public List getHosts() {
        return hosts;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy