io.github.fallwizard.rabbitmq.mgmt.model.Status 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;
/**
* This is a wrapper around the RabbitMQ Status Route: /api/aliveness-test/{vhost}
*
* @author Richard Clayton (Berico Technologies)
*/
public class Status {
protected String status;
public String getStatus() {
return status;
}
@Override
public String toString() {
return String.format("Status: %s", this.status);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy