| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | | package com.genersoft.iot.vmp.gb28181.bean; |  |   |  | 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; |  |     } |  | } | 
 |