Committing changes in driver files for paper evaluation
[iot2.git] / benchmarks / drivers / Java / LifxLightBulb / DeviceStateGroup.java
1 package iotcode.LifxLightBulb;
2
3 public class DeviceStateGroup {
4         byte[] group = new byte[16];
5         final String label;
6         final long updatedAt;
7
8         public DeviceStateGroup(byte[] _location, String _label, long _updatedAt) {
9                 group = _location;
10                 label = _label;
11                 updatedAt = _updatedAt;
12         }
13
14         public byte[] getGroup() {
15                 return group;
16         }
17
18         public String getLabel() {
19                 return label;
20         }
21
22         public long getUpdatedAt() {
23                 return updatedAt;
24         }
25 }