io.github.fallwizard.rabbitmq.mgmt.model.WebContext 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;
/**
* Information about the available Web Services on a node
* or cluster. This will provide the open ports and paths for
* the Management Console on each node.
*
* @author rclayton
*
*/
public class WebContext {
protected String description;
protected String path;
protected int port;
protected boolean ignore_in_use = false;
public WebContext(){}
public String getDescription() {
return description;
}
public String getPath() {
return path;
}
public int getPort() {
return port;
}
public boolean isIgnore_in_use() {
return ignore_in_use;
}
@Override
public String toString() {
return "WebContext [description=" + description + ", path=" + path
+ ", port=" + port + ", ignore_in_use=" + ignore_in_use + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy