Sentinel with process jailing using Tomoyo - works with the SmartLightsController...
[iot2.git] / benchmarks / Java / IrrigationController / MotionDetectionCallback.java
1 package IrrigationController;
2
3 /** Interface MotionDetectionCallback for allowing callbacks from the MotionDetection class.
4  *
5  *
6  * @author      Ali Younis <ayounis @ uci.edu>
7  * @version     1.0
8  * @since       2016-03-21
9  */
10
11 public interface MotionDetectionCallback {
12
13         /** Callback method for when motion is detected.
14          *
15          *   @param timeStampOfLastMotion [long].
16          *
17          *   @return [void] None.
18          */
19         public void motionDetected(long timeStampOfLastMotion);
20 }