Embeded Benchmark
[iotcloud.git] / version2 / src / java / light_fan_benchmark / DeviceStateService.java
1
2
3 public class DeviceStateService {
4         private final int service;
5         private final long port;
6
7         public DeviceStateService(int _service, long _port) {
8                 service = _service;
9                 port = _port;
10         }
11
12         public int getService() {
13                 return service;
14         }
15
16         public long getPort() {
17                 return port;
18         }
19 }