summaryrefslogtreecommitdiff
path: root/NodeStateAccess/interfaces/NodeStateMachineTest.fidl
diff options
context:
space:
mode:
Diffstat (limited to 'NodeStateAccess/interfaces/NodeStateMachineTest.fidl')
-rw-r--r--NodeStateAccess/interfaces/NodeStateMachineTest.fidl51
1 files changed, 51 insertions, 0 deletions
diff --git a/NodeStateAccess/interfaces/NodeStateMachineTest.fidl b/NodeStateAccess/interfaces/NodeStateMachineTest.fidl
new file mode 100644
index 0000000..63f1832
--- /dev/null
+++ b/NodeStateAccess/interfaces/NodeStateMachineTest.fidl
@@ -0,0 +1,51 @@
+/**********************************************************************************************************************
+ *
+ * Copyright (C) 2017 BMW AG
+ *
+ * Interface definition for NodeStateManager CommonAPI interface
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ **********************************************************************************************************************/
+
+package org.genivi.nodestatemachinetest
+import org.genivi.* from "NodeStateManagerTypes.fidl"
+
+<**
+ @author : Monika Forstner
+**>
+
+interface Test {
+ version {
+ major 1
+ minor 0
+ }
+ method GetNsmData {
+ in {
+ NodeStateManagerTypes.NsmDataType_e DataType
+ NodeStateManagerTypes.NsmDataTypeArray DataIn
+ UInt32 DataLen
+ }
+ out {
+ NodeStateManagerTypes.NsmDataTypeArray DataOut
+ Int32 ErrorCode
+ }
+ }
+ method GetNsmInterfaceVersion {
+ out {
+ UInt8 Version
+ }
+ }
+ method SetNsmData {
+ in {
+ NodeStateManagerTypes.NsmDataType_e DataType
+ NodeStateManagerTypes.NsmDataTypeArray Data
+ UInt32 DataLen
+ }
+ out {
+ Int32 ErrorCode
+ }
+ }
+}