Adjusting and cleaning up ZigbeeTest to install Vigilia ZigBee gateway and devices.
[iot2.git] / iotjava / iotrmi / Java / sample / TestClass_Stub.java
index 9e2006d31f23ead3ad092c30a6614599510bdc02..a08ce6282871d19f54a61fa19aa80db801b3e3b4 100644 (file)
@@ -24,7 +24,9 @@ public class TestClass_Stub implements TestClassInterface {
         * Class Constants
         */
        private int objectId = 0;       // Default value is 0
-
+       // This is permission system for callback objects
+       private static Integer[] object0Permission = { 0, 1 };  // object0 is the callback object
+       private List<Integer> set0Allowed;
 
        /**
         * Properties and constants for Callbacks!
@@ -43,6 +45,8 @@ public class TestClass_Stub implements TestClassInterface {
                ports = _ports;
                rmiCall = new IoTRMICall(_port, _address, _rev);
 
+               set0Allowed = Arrays.asList(object0Permission);
+
                // Only for callbacks!!!
                listCBObj = new ArrayList<CallBackInterface>();
                ___initCallBack();
@@ -64,11 +68,14 @@ public class TestClass_Stub implements TestClassInterface {
                Thread thread = new Thread() {
                        public void run() {
                        try{
-                                       System.out.println("Created server with port: " + ports[0]);
                                        rmiObj = new IoTRMIObject(ports[0]);
-                                       Object retObj = null;
                                        while (true) {
                                                byte[] method = rmiObj.getMethodBytes();
+                                               // Permission checking
+                                               int methId = IoTRMIObject.getMethodId(method);
+                                               if (!set0Allowed.contains(methId))
+                                                       throw new Error("CallBack_CBSkeleton: This object is not allowed to access method " + methId);
+
                                                int objId = IoTRMIObject.getObjectId(method);
                                                CallBack_CBSkeleton skel = (CallBack_CBSkeleton) listCBObj.get(objId);
                                                if (skel != null) {
@@ -241,7 +248,7 @@ public class TestClass_Stub implements TestClassInterface {
                        paramCls2[pos] = int.class;
                        paramObj2[pos++] = data[i].year;
                }
-               System.out.println(Arrays.toString(paramObj2));
+               //System.out.println(Arrays.toString(paramObj2));
                Object retObj = rmiCall.remoteCall(objectId, methodId2, retType2, null, paramCls2, paramObj2);
                // RETURN STRUCT
                // Get the length of the struct first