Preparing Makefiles, stub, skeleton, config files, etc. for porting LifxLightBulb...
[iot2.git] / config / iotpolicy / lightbulbpolicy.pol
diff --git a/config/iotpolicy/lightbulbpolicy.pol b/config/iotpolicy/lightbulbpolicy.pol
deleted file mode 100644 (file)
index b879626..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-public interface LightBulb {
-
-    public void MethodA(int A, float B);
-    public void MethodA(int A, float B, int AB);
-    public int MethodB(String C, String D);
-    public byte MethodC(String E, List<Integer> F);
-
-       capability Flicker {
-               description = "The quick brown fox jumps over the smart dog";
-               description = "Another description";
-               method = "MethodA(int A, float B)";
-               method = "MethodB(String C, String D)";
-               method = "MethodC(String E, List<Integer> F)";
-       }
-
-       capability AutoOnOff {
-               description = "The quick brown fox jumps over the cool dog";
-               method = "MethodA(int A, float B)";
-               method = "MethodA(int A, float B, int AB)";
-               method = "MethodC(String E, List<Integer> F)";
-       }
-
-       enum Enum {
-
-               APPLE,
-               ORANGE,
-               GRAPE,
-               MANGO
-       }
-}
-
-