alarmui/group/alarmui_stop.rul
branchRCL_3
changeset 27 55d60436f00b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/alarmui/group/alarmui_stop.rul	Tue May 11 16:12:24 2010 +0300
@@ -0,0 +1,22 @@
+<script xmlns="http://www.nokia.com/ns/cep/script/1.0/" xmlns:cep="http://www.nokia.com/ns/cep/1.0/">
+    <!-- If alarm is not active, nothing needs to be done -->
+    <if>
+        <equals>
+            <contextRef source='Alarm' type='Status.Active' value='false'/>
+        </equals>
+        <actions>
+            <!-- Do nothing -->
+        </actions>        
+    </if>
+    
+    <!-- Stop alarm when 'stop' command is received from alarmui -->
+    <elseIf>
+		<contextUpdated>
+		    <contextRef source='AlarmUI' type='Command' value='Stop'/>
+		</contextUpdated>
+		<actions>
+			<!-- stop the alarm -->
+			<AlarmUI.Stop/>
+		</actions>
+    </elseIf>
+</script>
\ No newline at end of file