com.firefly.net.tcp.TcpServerConfiguration Maven / Gradle / Ivy
package com.firefly.net.tcp;
public class TcpServerConfiguration extends TcpConfiguration {
private String host;
private int port;
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
}