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

io.github.fallwizard.rabbitmq.mgmt.model.Status Maven / Gradle / Ivy

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