summaryrefslogtreecommitdiff
path: root/NodeStateAccess/interfaces/NodeStateMachineTest.fidl
blob: 63f18321114d226e342b8de14d98ae8f0db4ff73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
        }
    }
}