mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-23 05:37:48 +08:00
28 lines
468 B
Java
Executable File
28 lines
468 B
Java
Executable File
package com.genersoft.iot.vmp.common;
|
|
|
|
public class RemoteAddressInfo {
|
|
private String ip;
|
|
private int port;
|
|
|
|
public RemoteAddressInfo(String ip, int port) {
|
|
this.ip = ip;
|
|
this.port = port;
|
|
}
|
|
|
|
public String getIp() {
|
|
return ip;
|
|
}
|
|
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
|
|
public int getPort() {
|
|
return port;
|
|
}
|
|
|
|
public void setPort(int port) {
|
|
this.port = port;
|
|
}
|
|
}
|