Adding doorlock to the fourth benchmark
[iot2.git] / localconfig / iotpolicy / SmartthingsActuator / smartthingsactuatorcallback.pol
1 public interface SmartthingsActuatorCallback {
2
3         public void newActuatorReadingAvailable(int _sensorId, int _value, boolean _activeValue);
4
5         capability Callback {
6                 description = "Callback method";
7                 method = "newActuatorReadingAvailable(int _sensorId, int _value, boolean _activeValue)";
8         }
9 }
10
11