Infrastruction modification
[smartthings-infrastructure.git] / appTouch / Touched.groovy
index 89d575e670ad99eb5125de3f85a66c24eb77bfc7..980a05a10608784634a7e77c244721d9a7df57a4 100644 (file)
@@ -1,26 +1,22 @@
 //Create a class for Touch sensor
 package appTouch
+import SmartThing.SmartThing
 
-public class Touched{
-       def sendEvent
-       private String id
-       private int isTouched
-       private String label
-       private String name
+public class Touched extends SmartThing {
+       // id, label, and display name of the device
+       StringBuilder id = new StringBuilder()
+       StringBuilder label = new StringBuilder()
+       StringBuilder displayName = new StringBuilder()
 
+       Touched(Closure sendEvent) {
+               idSmartThing = id
+               labelSmartThing = label
+               displayNameSmartThing = displayName
+               sendEventSmartThings = sendEvent
 
-       Touched(Closure sendEvent, int isTouched) {
-               this.sendEvent = sendEvent
-               this.isTouched = isTouched
-               this.label = "app0"
-               this.id = "appID0"
-               this.name = "app0"
-       }
-
-       //By Model Checker
-       def setValue(LinkedHashMap eventDataMap) {
-               println("The application is Touched!")
-               this.isTouched = 1 //Do we need this?
-               sendEvent(eventDataMap)
+               // Initialization
+               id.append("appTouchID0")
+               label.append("appTouch")
+               displayName.append("appTouch0")
        }
 }