Adding changes and files for doorlock driver
[iot2.git] / benchmarks / Java / HomeSecurityController / MotionDetectionCallback.java
1 package HomeSecurityController;
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 _md [MotionDetection].
16          *
17          *   @return [void] None.
18          */
19         public void motionDetected(MotionDetection _md);
20 }