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
*/
public class Connection {
private String ipv4;
private String ip;
private int port;
private PortType portType;
private boolean ssl;
public String getIpv4() {
return ipv4;
public String getIp() {
return ip;
}
public void setIpv4(String ipv4) {
this.ipv4 = ipv4;
public void setIp(String ip) {
this.ip = ip;
}
public int getPort() {