Benchmark readme
[iotcloud.git] / version2 / src / java / light_fan_benchmark / DeviceStateLocation.java
1
2
3 public class DeviceStateLocation {
4         byte[] location = new byte[16];
5         final String label;
6         final long updatedAt;
7
8         public DeviceStateLocation(byte[] _location, String _label, long _updatedAt) {
9                 location = _location;
10                 label = _label;
11                 updatedAt = _updatedAt;
12         }
13
14         public byte[] getLocation() {
15                 return location;
16         }
17
18         public String getLabel() {
19                 return label;
20         }
21
22         public long getUpdatedAt() {
23                 return updatedAt;
24         }
25 }