Cleaning up code for runtime, installer, RMI, compiler for the Java side
[iot2.git] / iotjava / iotruntime / stub / IoTJSONStub.java
diff --git a/iotjava/iotruntime/stub/IoTJSONStub.java b/iotjava/iotruntime/stub/IoTJSONStub.java
deleted file mode 100644 (file)
index ed6df19..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-package iotruntime.stub;
-
-import iotruntime.slave.IoTDeviceAddress;
-
-/** IoTJSONStub abstract class that all the stubs are going
- *  to implement
- *
- * @author      Rahmadi Trimananda <rahmadi.trimananda @ uci.edu>
- * @version     1.0                
- * @since       2016-04-20
- */
-public abstract class IoTJSONStub {
-
-       protected IoTDeviceAddress iotDevAddress;
-
-       /**
-        * Class constructor
-        *
-        * @param   iotdevAddress       IoTDeviceAddress object
-        */
-       public IoTJSONStub(IoTDeviceAddress _iotDevAddress) {
-
-               this.iotDevAddress = _iotDevAddress;
-       }
-
-       public abstract void registerCallback(Object objCallback);
-}
-