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

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

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