summaryrefslogtreecommitdiff
path: root/CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl
diff options
context:
space:
mode:
authorJohannes Langlotz <Johannes.Langlotz@partner.bmw.de>2014-03-21 11:03:29 +0100
committerGerrit Code Review <qqmthk1@lpmodthk02.bmwgroup.net>2014-03-21 11:03:29 +0100
commit4bf0aa70112fdfb686816ea228684ee18f184102 (patch)
treedf49945b5f6b748f558e55856e655fc18fc6b40f /CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl
parent49e98dcf53f17e03f1014f3ef9c34f3b13e47daa (diff)
parent5e073a099fe590bcab00d8504647660df9e7c500 (diff)
downloadgenivi-common-api-runtime-4bf0aa70112fdfb686816ea228684ee18f184102.tar.gz
Merge "Add examples, extended tutorial and specification document."
Diffstat (limited to 'CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl')
-rw-r--r--CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl21
1 files changed, 21 insertions, 0 deletions
diff --git a/CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl b/CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl
new file mode 100644
index 0000000..bb48cc3
--- /dev/null
+++ b/CommonAPI-Examples/e01HelloWorld/fidl/E01HelloWorld.fidl
@@ -0,0 +1,21 @@
+/* Copyright (C) 2014 BMW Group
+ * Author: Manfred Bathelt (manfred.bathelt@bmw.de)
+ * Author: Juergen Gehring (juergen.gehring@bmw.de)
+ * 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 commonapi.examples
+
+interface E01HelloWorld {
+ version { major 0 minor 1 }
+
+ method sayHello {
+ in {
+ String name
+ }
+ out {
+ String message
+ }
+ }
+} \ No newline at end of file