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

org.fisco.bcos.channel.handler.ConnectionInfo Maven / Gradle / Ivy

There is a newer version: 2.6.6
Show newest version
package org.fisco.bcos.channel.handler;

import java.util.ArrayList;
import java.util.List;

public class ConnectionInfo {
	public String getNodeID() {
		return nodeID;
	}
	public void setNodeID(String nodeID) {
		this.nodeID = nodeID;
	}
	public String getHost() {
		return host;
	}
	public void setHost(String host) {
		this.host = host;
	}
	public Integer getPort() {
		return port;
	}
	public void setPort(Integer port) {
		this.port = port;
	}
	
	public Boolean getConfig() {
		return config;
	}
	public void setConfig(Boolean config) {
		this.config = config;
	}
	
	public List getTopics() {
		return topics;
	}
	public void setTopics(List topics) {
		this.topics = topics;
	}

	private String nodeID = "";
	private String host = "";
	private Integer port = 0;
	private Boolean config = false;
	
	private List topics = new ArrayList();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy