Adjusting files in ZigbeeTest; preparing things for 4th benchmark, i.e. generating...
[iot2.git] / benchmarks / IrrigationController / MotionDetectionCallback.java
index d7dfb8345985c2bd4897d4073b5e92b049fdd7c2..3f89aa23091bd999c64ebf94e9f58bf7d9075503 100644 (file)
@@ -8,19 +8,13 @@ package IrrigationController;
  * @since       2016-03-21
  */
 
-// Checker annotations
-import java.rmi.Remote;
-import java.rmi.RemoteException;
-
-
-public interface MotionDetectionCallback extends Remote {
+public interface MotionDetectionCallback {
 
        /** Callback method for when motion is detected.
         *
-        *   @param _md [MotionDetection].
+        *   @param timeStampOfLastMotion [long].
         *
         *   @return [void] None.
         */
-       //public void motionDetected(@NonLocalRemote MotionDetection _wg) throws RemoteException;
-       public void motionDetected(long timeStampOfLastMotion) throws RemoteException;
+       public void motionDetected(long timeStampOfLastMotion);
 }