diff options
Diffstat (limited to 'api/franca/navigation')
-rwxr-xr-x | api/franca/navigation/NavigationTypes.fidl | 2 | ||||
-rw-r--r-- | api/franca/navigation/mapviewer/MapViewerSession.fidl | 7 | ||||
-rw-r--r-- | api/franca/navigation/navigationcore/NavigationCoreSession.fidl | 9 |
3 files changed, 10 insertions, 8 deletions
diff --git a/api/franca/navigation/NavigationTypes.fidl b/api/franca/navigation/NavigationTypes.fidl index 5870507..043b966 100755 --- a/api/franca/navigation/NavigationTypes.fidl +++ b/api/franca/navigation/NavigationTypes.fidl @@ -86,7 +86,7 @@ typeCollection NavigationTypes { struct Session {
Handle sessionHandle
- String client
+ String clientApp
}
enumeration Units {
METER = 50
diff --git a/api/franca/navigation/mapviewer/MapViewerSession.fidl b/api/franca/navigation/mapviewer/MapViewerSession.fidl index 8f45ecf..9657f0b 100644 --- a/api/franca/navigation/mapviewer/MapViewerSession.fidl +++ b/api/franca/navigation/mapviewer/MapViewerSession.fidl @@ -32,8 +32,9 @@ interface MapViewerSession { @description : client = name or identifier of the client application that requests a new session The navigation core must internally associate this name to the returned session handle This parameter can be used to identify the client application and determine if a given feature is enabled for it + NB: clientApp is used in place of client, due to a conflicting issue when build with CommonAPI **> - String client + String clientApp } out { <** @description : sessionHandle **> @@ -72,8 +73,8 @@ interface MapViewerSession { <** @description : This method returns a list of all available sessions .**> method getAllSessions { out { - <** @description : sessionsList = array[struct(sessionHandle,client)] - client = name or identifier of the client application that requested the sessionHandle .**> + <** @description : sessionsList = array[struct(sessionHandle,clientApp)] + clientApp = name or identifier of the client application that requested the sessionHandle .**> Session[] sessionsList } } diff --git a/api/franca/navigation/navigationcore/NavigationCoreSession.fidl b/api/franca/navigation/navigationcore/NavigationCoreSession.fidl index 4cdda2a..2bb4292 100644 --- a/api/franca/navigation/navigationcore/NavigationCoreSession.fidl +++ b/api/franca/navigation/navigationcore/NavigationCoreSession.fidl @@ -29,11 +29,12 @@ interface NavigationCoreSession { method createSession { in { <** - @description : client = name or identifier of the client application that requests a new session + @description : clientApp = name or identifier of the client application that requests a new session The navigation core must internally associate this name to the returned session handle This parameter can be used to identify the client application and determine if a given feature is enabled for it + NB: clientApp is used in place of client, due to a conflicting issue when build with CommonAPI **> - String client + String clientApp } out { <** @description : sessionHandle **> @@ -72,8 +73,8 @@ interface NavigationCoreSession { <** @description : This method returns a list of all available sessions .**> method getAllSessions { out { - <** @description : sessionsList = array[struct(sessionHandle,client)] - client = name or identifier of the client application that requested the sessionHandle .**> + <** @description : sessionsList = array[struct(sessionHandle,clientApp)] + clientApp = name or identifier of the client application that requested the sessionHandle .**> Session[] sessionsList } } |