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