This commit is contained in:
geek 2018-04-26 17:06:04 +09:00
parent 68097b8e87
commit 21fe757bf6

View File

@ -6,17 +6,17 @@ import com.loafle.overflow.core.type.PortType;
* Connection * Connection
*/ */
public class Connection { public class Connection {
private String ipv4; private String ip;
private int port; private int port;
private PortType portType; private PortType portType;
private boolean ssl; private boolean ssl;
public String getIpv4() { public String getIp() {
return ipv4; return ip;
} }
public void setIpv4(String ipv4) { public void setIp(String ip) {
this.ipv4 = ipv4; this.ip = ip;
} }
public int getPort() { public int getPort() {