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

com.jeesuite.kafka.monitor.model.ProducerTopicInfo Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
/**
 * 
 */
package com.jeesuite.kafka.monitor.model;

import java.util.ArrayList;
import java.util.List;

/**
 * @description 
* @author vakin * @date 2016年12月10日 */ public class ProducerTopicInfo { private String topic; private List producerStats = new ArrayList<>(); public ProducerTopicInfo() {} public ProducerTopicInfo(String topic) { super(); this.topic = topic; } public String getTopic() { return topic; } public void setTopic(String topic) { this.topic = topic; } public List getProducerStats() { return producerStats; } public void setProducerStats(List producerStats) { this.producerStats = producerStats; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy