sysstatemgmt/systemstateplugins/test/tintgsapolicy/resource/tgsa_statetransition.rss
branchRCL_3
changeset 21 ccb4f6b3db21
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstateplugins/test/tintgsapolicy/resource/tgsa_statetransition.rss	Tue Aug 31 16:29:05 2010 +0300
@@ -0,0 +1,64 @@
+// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+#include <ssm/ssmcmd.rh>
+#include <ssm/ssmsubstates.hrh>
+#include "ssmsubstateext.hrh"
+
+UID2 KUidSsmCommandListResourceFile
+
+// SSM_COMMAND_LIST_ROOT must be the first resource in a command list resource file.
+// The SSM relies on this having a resource ID of 1.
+RESOURCE SSM_COMMAND_LIST_ROOT
+	{
+	command_list_mapping = r_command_list_mapping;
+	}
+
+RESOURCE SSM_COMMAND_LIST_MAPPING r_command_list_mapping
+	{
+	mappings =
+		{
+		SSM_COMMANDLISTID_TO_RESOURCEID
+			{
+			command_list_id = ESsmStateNonCritical;
+			resource_id = r_testapp_command;
+			}
+		};
+	}
+
+
+RESOURCE SSM_COMMAND_LIST r_testapp_command
+   	{
+	commands =
+		{
+		r_command_statetranfromnormal,
+		r_command_statetranfromstartup
+		};
+	}
+
+
+RESOURCE SSM_START_PROCESS_INFO r_command_statetranfromnormal
+	{
+	severity = ECmdCriticalSeverity;
+	name = "tgsastatetranfromnormal.exe";
+	execution_behaviour = ESsmFireAndForget;
+	}
+
+RESOURCE SSM_START_PROCESS_INFO r_command_statetranfromstartup
+    {
+    severity = ECmdCriticalSeverity;
+    name = "tgsastatetranfromstartup.exe";
+    execution_behaviour = ESsmWaitForSignal;
+    }