A small change in SwitchLevel class
[smartthings-infrastructure.git] / appTouch / Touched.groovy
index 530d64b2e906ff1e1ea81184ff1aaf615b7daa81..980a05a10608784634a7e77c244721d9a7df57a4 100644 (file)
@@ -1,19 +1,22 @@
 //Create a class for Touch sensor
 package appTouch
+import SmartThing.SmartThing
 
-public class Touched{
-       def sendEvent
-       private int isTouched
+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, int isTouched) {
-               this.sendEvent = sendEvent
-               this.isTouched = isTouched
-       }
+       Touched(Closure sendEvent) {
+               idSmartThing = id
+               labelSmartThing = label
+               displayNameSmartThing = displayName
+               sendEventSmartThings = sendEvent
 
-       //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")
        }
 }