Replacing default BUFFSIZE value with new buffer size value when a resize needs to...
[iot2.git] / benchmarks / drivers / LifxLightBulb / DeviceStateLocation.java
1 package iotcode.LifxLightBulb;
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 }