
io.github.fallwizard.rabbitmq.mgmt.model.Overview Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbitmq-mgmt Show documentation
Show all versions of rabbitmq-mgmt Show documentation
Manage your RabbitMQ services programmatically
The newest version!
package io.github.fallwizard.rabbitmq.mgmt.model;
import java.util.Collection;
/**
* Overview information for a single instance of the RabbitMQ Management Console
* (i.e. not everything is cluster information).
*
* @author Richard Clayton (Berico Technologies)
*/
public class Overview {
protected String management_version;
protected String statistics_level;
protected Collection exchange_types;
protected String rabbitmq_version;
protected String erlang_version;
protected String node;
protected String statistics_db_node;
protected Collection contexts;
protected Collection listeners;
protected TopologyObjectTotals object_totals;
protected QueueTotals queue_totals;
public String getManagementConsoleVersion() {
return management_version;
}
public String getStatisticsLevel() {
return statistics_level;
}
public Collection getExchangeTypes() {
return exchange_types;
}
public String getRabbitMQVersion() {
return rabbitmq_version;
}
public String getErlangVersion() {
return erlang_version;
}
public String getNode() {
return node;
}
public String getStatisticsNode() {
return statistics_db_node;
}
public Collection getContexts() {
return contexts;
}
public Collection getListeners() {
return listeners;
}
public TopologyObjectTotals getTopologyObjectTotals() {
return object_totals;
}
public QueueTotals getQueueTotals() {
return queue_totals;
}
@Override
public String toString() {
return "Overview [management_version=" + management_version
+ ", statistics_level=" + statistics_level
+ ", exchange_types=" + exchange_types + ", rabbitmq_version="
+ rabbitmq_version + ", erlang_version=" + erlang_version
+ ", node=" + node + ", statistics_db_node="
+ statistics_db_node + ", contexts=" + contexts
+ ", listeners=" + listeners + ", object_totals="
+ object_totals + ", queue_totals=" + queue_totals + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy