summaryrefslogtreecommitdiff
path: root/api/poi-service/genivi-poiservice-poisearch.xml
blob: 3fc44be353e0a23927c59e1313e3a8e9beae98da (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="introspect.xsl"?>
<!-- SPDX-License-Identifier: MPL-2.0
     Copyright (C) 2014, BMW Car IT GmbH, Continental Automotive GmbH, PCA Peugeot Citroën, XS Embedded GmbH, TomTom International B.V., Alpine Electronics R&D Europe GmbH, AISIN AW CO., LTD.,  Neusoft Technology Solutions GmbH, Jaguar Land Rover Limited, Visteon Corporation
     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/.
-->
<node xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="/org/genivi/poiservice" xsi:noNamespaceSchemaLocation="introspect.xsd">
  <interface name="org.genivi.navigation.poiservice.POISearch">
    <version>1.0.0 (19-12-2012)</version>
    <doc>
      <line>This interface offers methods that implement the POI search functionality of a navigation system</line>
    </doc>
    <method name="GetVersion">
      <doc>
        <line>GetVersion = This method returns the API version implemented by the server application</line>
      </doc>
      <arg name="version" type="(qqqs)" direction="out">
        <doc>
          <line>version = struct(major,minor,micro,date)</line>
          <line>major = when the major changes, then backward compatibility with previous releases is not granted</line>
          <line>minor = when the minor changes, then backward compatibility with previous releases is granted, but something changed in the implementation of the API (e.g. new methods may have been added)</line>
          <line>micro = when the micro changes, then backward compatibility with previous releases is granted (bug fixes or documentation modifications)</line>
          <line>date = release date (e.g. 22-05-2012)</line>
        </doc>
      </arg>
    </method>
    <method name="ValidateCategories">
      <doc>
        <line>ValidateCategories = This method allows the application to validate that POI categories are supported by the POI component and the Content access modules.</line>
      </doc>
      <arg name="categories" type="au" direction="in">
        <doc>
          <line>categories = array[id]</line>
          <line>id = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>Note: A POI category is a unique ID.</line>
        </doc>
      </arg>
      <arg name="results" type="a(ub)" direction="out">
        <doc>
          <line>results = array[unique_id, status]</line>
          <line>results = List of status for all the POI categories.</line>
          <line>unique id = category id</line>
          <line>status = true if the category is available.</line>
        </doc>
      </arg>
    </method>
    <method name="GetAvailableCategories">
      <doc>
        <line>GetAvailableCategories = This method retrieves the list of POI categories available (pre-defined and custom).</line>
      </doc>
      <arg name="categories" type="a(usb)" direction="out">
        <doc>
          <line>categories = array[struct(id, name, top_level)]</line>
          <line>id = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>name = name to be displayed by application</line>
          <line>top_level = true if the category is a pre-defined one (top level with only ALL_CATEGORIES as parent), false for customized categories created by plug-in.</line>
          <line>Note: A POI category is a unique ID.</line>
        </doc>
      </arg>
    </method>
    <method name="GetRootCategory">
      <doc>
        <line>GetRootCategory = Get the root category id. That would be ALL_CATEGORIES.</line>
      </doc>
      <arg name="category" type="u" direction="out">
        <doc>
          <line>id = ALL_CATEGORIES</line>
          <line>The root category is a top level one by design.</line>
        </doc>
      </arg>
    </method>
    <method name="GetChildrenCategories">
      <doc>
        <line>GetChildrenCategories = Get the children categories id and type (top level) from the a parent unique id.</line>
      </doc>
      <arg name="category" type="u" direction="in">
        <doc>
          <line>unique category id</line>
        </doc>
      </arg>
      <arg name="categories" type="a(ub)" direction="out">
        <doc>
          <line>categories = array[struct(id, top_level)]</line>
          <line>id = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>top_level = true if the category is a pre-defined one (top level with only ALL_CATEGORIES as parent), false for customized categories created by plug-in.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidCategory">
        <doc>
          <line>The category is not available.</line>
        </doc>
      </error>
    </method>
    <method name="GetParentCategories">
      <doc>
        <line>GetParentCategories = Get the parent categories id and type (top level) from the a unique id.</line>
      </doc>
      <arg name="category" type="u" direction="in">
        <doc>
          <line>unique category id</line>
        </doc>
      </arg>
      <arg name="categories" type="a(ub)" direction="out">
        <doc>
          <line>categories = array[struct(id, top_level)]</line>
          <line>id = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>top_level = true if the category is a pre-defined one (top level with only ALL_CATEGORIES as parent), false for customized categories created by plug-in.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidCategory">
        <doc>
          <line>The category is not available.</line>
        </doc>
      </error>
    </method>
    <method name="GetCategoriesWithStandardCategoryId">
      <doc>
        <line>GetCategoriesWithStandardCategoryId = Get the categories that are marked with the given standard category.</line>        
      </doc>
      <arg name="standardCategoryId" type="i" direction="in">
        <doc>
          <line>Categories marked with "standardCategoryId" should be returned.</line>
        </doc>
      </arg>
      <arg name="categories" type="au" direction="out">
        <doc>
          <line>List of categories that are marked with the requested standard category.</line>
        </doc>
      </arg>    
    </method>    
    <method name="GetCategoriesDetails">
      <doc>
        <line>GetCategoriesDetails = This method retrieves the details associated to one or more POI categories.</line>
        <line>It contains the name, the parent categories, the top level attribute, the list of attributes, the icons, ... .</line>
      </doc>
      <arg name="categories" type="au" direction="in">
        <doc>
          <line>list of categories = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>Note: A POI category is a unique ID. It could be a predifined category or a custom one defined by a POI plug-in.</line>
        </doc>
      </arg>
      <arg name="results" type="a((uiau(yv)sbs(yv))a(usia(is(yv)))a(us))" direction="out">
        <doc>
          <line>results = array[details, attributeList, sortOptions]</line>
          <line>results = List of details for all the POI categories.</line>
          <line>details = struct(unique_id, list of parents_id, icons, name, top_level, short_desc, media)]</line>
          <line>unique_id = Category unique id</line>
          <line>standardCategoryId = enum(...) Identifier for the POI Standard Category that describes the semantic meaning of the POI Category.</line>
          <line>parents_id = list of parent categories unique id</line>
          <line>icons = visual icons set</line>
          <line>name = name</line>
          <line>top_level = true if the category is a predefined one (top level), false for customized categories created by plug-in.</line>
          <line>short_desc = short category description (optional)</line>
          <line>media = media associated (html web site, audio, video, ...) (optional)</line>
          <line>attributeList = array[struct(id, name, type, array[struct(operator_type, operator_name, operator_value)])</line>
          <line>id = attribute unique id</line>
          <line>name = attribute unique name</line>
          <line>type = enum(INVALID,STRING,INTEGER,COORDINATES ...)</line>
          <line>operator_type = enum(INVALID,MORE_THAN,LESS_THAN,EQUAL, ....)</line>
          <line>operator_name = attribute operator name</line>
          <line>operator_value = attribute value</line>
          <line>sortOptions = array[struct(id, name)]</line>
          <line>id = enum(SORT_DEFAULT,SORT_BY_DISTANCE,SORT_BY_TIME,ATTRIBUTE_CUSTOM, ... )</line>
          <line>name = name to be displayed by application</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidCategory">
        <doc>
          <line>The category is not available.</line>
          <line>If there are more than one category and one of them is not available, no detailed will be returned for this category but there will be no error.</line>
        </doc>
      </error>
    </method>
    <signal name="CategoriesUpdated">
      <doc>
        <line>CategoriesUpdated = This signal indicates that one or more POI categories were added, updated or removed.</line>
      </doc>
      <arg name="poiCategories" type="a(uq)" direction="out">
        <doc>
          <line>poiCategories = array[struct(unique_id, reason)]</line>
          <line>List of POI categories modified or added.</line>
          <line>unique_id = Unique category id</line>
          <line>reason = enum(ADDED,REMOVED,ATTR_ADDED,ATTR_MODIFIED,ATTR_REMOVED, ... )</line>
        </doc>
      </arg>
    </signal>
    <method name="CreatePoiSearchHandle">
      <doc>
        <line>CreatePoiSearchHandle = This method creates a new location input and retrieves a handle</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="out">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.NoMoreHandles">
        <doc>
          <line>This error is generated if no more poi search unique handles are available</line>
        </doc>
      </error>
    </method>
    <method name="DeletePoiSearchHandle">
      <doc>
        <line>DeletePoiSearchHandle = This method deletes a location input and its associated resources</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to delete a poi search unique handle that is not available</line>
        </doc>
      </error>
    </method>
    <method name="SetCenter">
      <doc>
        <line>SetCenter  = This method sets the location to start the search around.</line>
        <line>If a route handle was defined before, it will be replaced by this location.</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="location" type="(ddd)" direction="in">
        <doc>
          <line>location = struct(lat,lon,alt)</line>
          <line>lat = latitude of a vertex of the polygon in format %3.6f. Range [-90:+90]. Example: 48.053250</line>
          <line>lon = longitude of a vertex of the polygon in format %3.6f. Range [-180:+180]. Example: 48.053250</line>
          <line>alt = altitude above the sea level of the current position in meters</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidPosition">
        <doc>
          <line>This error is generated if an application tries to set invalid coordinates.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.SearchIsActive">
        <doc>
          <line>This error is generated if an application tries to change the search criteria but the search is on-going and could not be updated.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
    </method>
    <method name="SetRouteHandle">
      <doc>
        <line>SetRouteHandle  = This method allows to start a POI search along a guided route.</line>
        <line>The route handle must be valid or the POI search will failed.</line>
        <line>If a search location was defined before, it will be replaced by the route.</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="sessionHandle" type="u" direction="in">
        <doc>
          <line>sessionHandle = session handle</line>
        </doc>
      </arg>
      <arg name="routeHandle" type="u" direction="in">
        <doc>
          <line>routeHandle = route handle.</line>
        </doc>
      </arg>
      <arg name="startSearchOffset" type="u" direction="in">
        <doc>
          <line>startSearchOffset (optional) = Distance from vehicle (in meters) from where to start the search along. 0 or invalid distance means start from vehicle.</line>
        </doc>
      </arg>
      <arg name="endSearchOffset" type="u" direction="in">
        <doc>
          <line>endSearchOffset (optional) = Lenght of the route (in meters) from where to start the search along. 0 or invalid lenght means end is the destination.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidRouteHandle">
        <doc>
          <line>This error is generated if an application tries to set invalid route handle.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.SearchIsActive">
        <doc>
          <line>This error is generated if an application tries to change the search criteria but the search is on-going and could not be updated.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
    </method>
    <method name="SetCategories">
      <doc>
        <line>SetCategories = This method sets the POI categories for the current search input and the corresponding result-lists for the current session</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="poiCategories" type="a(uu)" direction="in">
        <doc>
          <line>poiCategories = array[struct(category, radius)]</line>
          <line>category = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>radius  = activation or search radius around the position (in 10 meters) for the category. If value is 0 (zero), the default radius (defined for a category) is applied.</line>
          <line>Note: A POI category is a unique ID. It could be a predifined category or a custom one defined by a POI plug-in.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidCategory">
        <doc>
          <line>This error is generated if an application tries to set one or more invalid poi categories.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.SearchIsActive">
        <doc>
          <line>This error is generated if an application tries to change the search criteria but the search is on-going and could not be updated.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
    </method>
    <method name="SetAttributes">
      <doc>
        <line>SetAttributes = This method set POI attributes (optional) for the current search input and the corresponding result-lists for the current session</line>
        <line>An attribute is attached to a category</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="poiAttributes" type="a(uui(yv)ib)" direction="in">
        <doc>
          <line>poiAtttributes = array[struct(id, categoryId, type, value, oper, mandatory)]</line>
          <line>id = attribute unique id (see data model)</line>
          <line>categoryId = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>type = enum(INVALID,STRING,INTEGER,COORDINATES ...)</line>
          <line>value = value or partial value. The value depends on the attribute specifications and type.</line>
          <line>oper = enum(INVALID,MORE_THAN,LESS_THAN,EQUAL, ....)</line>
          <line>mandatory = true if the attribute is mandatory for the search and false for optional.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidPoiAttribute">
        <doc>
          <line>This error is generated if an application tries to set one or more invalid poi attributes.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.SearchIsActive">
        <doc>
          <line>This error is generated if an application tries to change the search criteria but the search is on-going and could not be updated.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
    </method>
    <method name="StartPoiSearch">
      <doc>
        <line>StartPoiSearch = This method sends the search input for the search handle.</line>
        <line>The search will start with the either the location or the route handle.</line>
        <line>If no positon or route handle were configured, the search will use the vehicle position are center location.</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="inputString" type="s" direction="in">
        <doc>
          <line>inputString = contains the name of the poi that is searched. It could be a partial name or an empty string.</line>
        </doc>
      </arg>
      <arg name="sortOption" type="i" direction="in">
        <doc>
          <line>sortOption = enum(SORT_DEFAULT,SORT_BY_DISTANCE,SORT_BY_TIME,ATTRIBUTE_CUSTOM, ... )</line>
          <line>If more than one category was defined for this search, the sort criteria should be compliant with all categories.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidCategory">
        <doc>
          <line>This error is generated if an application tries to start a search without, at least, one poi category defined.</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.BadLocation">
        <doc>
          <line>This error is generated if an application tries to start a search without a valid location (coordinates or route handle) defined.</line>
        </doc>
      </error>
    </method>
    <method name="CancelPoiSearch">
      <doc>
        <line>CancelPoiSearch = This method cancels the search for the current session</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
    </method>
    <method name="StartPoiProximityAlert">
      <doc>
        <line>StartPoiProximityAlert = This method starts to check for POI aound vehicle according to the criteria defined with the unique handle.</line>
        <line>Bt default, it will search for POI around vehicle position with default radius defined for each categories.</line>
        <line>If a route handle was defined, it will search along the route with default categorie's radius.</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi alert unique handle</line>
        </doc>
      </arg>
      <arg name="inputString" type="s" direction="in">
        <doc>
          <line>inputString = contains the name of the poi that is searched. It could be a partial name or an empty string.</line>
        </doc>
      </arg>
      <arg name="sortOption" type="i" direction="in">
        <doc>
          <line>sortOption = enum(SORT_DEFAULT,SORT_BY_DISTANCE,SORT_BY_TIME,ATTRIBUTE_CUSTOM, ... )</line>
          <line>If more than one category was defined for this search, the sort criteria should be compliant with all categories.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidCategory">
        <doc>
          <line>This error is generated if an application tries to start a search without, at least, one poi category defined.</line>
        </doc>
      </error>
    </method>
    <method name="CancelPoiProximityAlert">
      <doc>
        <line>CancelPoiProximityAlert = This method cancels the search for the current session</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi alert unique handle</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
    </method>
    <signal name="PoiStatus">
      <doc>
        <line>PoiStatus = This signal updates the search or proximity alert status of the specified handle.</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="out">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="statusValue" type="i" direction="out">
        <doc>
          <line>statusValue = enum(INVALID,NOT_STARTED,SEARCHING,FINISHED, ... )</line>
        </doc>
      </arg>
    </signal>
    <signal name="ResultListChanged">
      <doc>
        <line>ResultListChanged = This signal updates in the poi results list</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="out">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="resultListSize" type="q" direction="out">
        <doc>
          <line>resultListSize = Number of items of the results list</line>
        </doc>
      </arg>
    </signal>
    <method name="RequestResultList">
      <doc>
        <line>RequestResultList = This method gets the poi result list (e.g. after a Search/Scroll call)</line>
      </doc>
      <arg name="poiSearchHandle" type="u" direction="in">
        <doc>
          <line>poiSearchHandle = poi search unique handle</line>
        </doc>
      </arg>
      <arg name="offset" type="q" direction="in">
        <doc>
          <line>offset = starting offset of the newly requested list elements. If invalid (more that total list for instance) it starts from the begining.</line>
        </doc>
      </arg>
      <arg name="maxWindowSize" type="q" direction="in">
        <doc>
          <line>maxWindowSize = maximum number of elements that should be returned as result</line>
        </doc>
      </arg>
      <arg name="attributeList" type="au" direction="in">
        <doc>
          <line>attributeList = List of attributes id to retrieve. This is optional and the list could be empty.</line>
        </doc>
      </arg>
      <arg name="statusValue" type="i" direction="out">
        <doc>
          <line>statusValue = enum(INVALID,NOT_STARTED,SEARCHING,FINISHED, ... )</line>
        </doc>
      </arg>
      <arg name="resultListSize" type="q" direction="out">
        <doc>
          <line>resultListSize = Number of items of the results list</line>
        </doc>
      </arg>
      <arg name="resultListWindow" type="a(uuia(ui(yv)))" direction="out">
        <doc>
          <line>resultListWindow = array[unique_id, distance, route_status, attributeList]</line>
          <line>unique_id = POI unique id</line>
          <line>distance = distance in meters to poi from center of the search or from vehicle if search along</line>
          <line>route_status = enum(OFF_ROUTE,ON_ROUTE,INSIDE_CORRIDOR, ... )</line>
          <line>attributeList = array[struct(id, type, value)]</line>
          <line>List of attributes requested. It could be empty.</line>
          <line>id = attribute unique id (see data model)</line>
          <line>type = enum(INVALID,STRING,INTEGER,COORDINATES ...)</line>
          <line>value = value. The value depends on the attribute specifications and type.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.HandleNotAvailable">
        <doc>
          <line>This error is generated if an application tries to use a poi search unique handle that is not available or not valid</line>
        </doc>
      </error>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidPoiAttribute">
        <doc>
          <line>This error is generated if an application tries to get one or more invalid poi attributes.</line>
        </doc>
      </error>
    </method>
    <method name="GetPoiDetails">
      <doc>
        <line>GetPoiDetails = This method retrieves the details associated to one or more POI.</line>
        <line>It contains the name, the parent categories, the list of attributes, the icons, ... .</line>
      </doc>
      <arg name="id" type="au" direction="in">
        <doc>
          <line>list of poi = Unique poi id</line>
        </doc>
      </arg>
      <arg name="results" type="a((us(ddd))aua(ui(yv)))" direction="out">
        <doc>
          <line>results = array[details, categories, attributeList]</line>
          <line>results = List of details for all the POI.</line>
          <line>details = struct(unique id, name, location)</line>
          <line>unique id = POI id</line>
          <line>name = POI name</line>
          <line>location = struct(lat,lon,alt)</line>
          <line>lat = latitude of a vertex of the polygon in format %3.6f. Range [-90:+90]. Example: 48.053250</line>
          <line>lon = longitude of a vertex of the polygon in format %3.6f. Range [-180:+180]. Example: 48.053250</line>
          <line>alt = altitude above the sea level of the current position in meters</line>
          <line>categories = array[id]</line>
          <line>id = enum(INVALID,ALL_CATEGORIES,AIRPORT,RESTAURANT,HOTEL,GAZ_STATION,CAR_PARK, ...)</line>
          <line>attributeList = array[struct(id, type, value)]</line>
          <line>List of attributes requested. It could be empty.</line>
          <line>id = attribute unique id (see data model)</line>
          <line>type = enum(INVALID,STRING,INTEGER,COORDINATES ...)</line>
          <line>value = value. The value depends on the attribute specifications and type.</line>
        </doc>
      </arg>
      <error name="org.genivi.navigation.poiservice.poiSearch.Error.InvalidPoiId">
        <doc>
          <line>The poi unique id is not valid.</line>
        </doc>
      </error>
    </method>
  </interface>
</node>