-
Notifications
You must be signed in to change notification settings - Fork 8
/
util.position.html
3846 lines (3836 loc) · 539 KB
/
util.position.html
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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>703 Position Specification - OSGi Compendium 7</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1" />
<link rel="home" href="toc.html" title="OSGi Compendium" />
<link rel="up" href="toc.html" title="OSGi Compendium" />
<link rel="prev" href="util.xml.html" title="702 XML Parser Service Specification" />
<link rel="next" href="util.measurement.html" title="704 Measurement and State Specification" />
<meta name="Section-title" content="703 Position Specification" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/custom.css" />
<link rel="stylesheet" type="text/css" href="css/github.css" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Ubuntu:regular,bold&subset=Latin" /><script type="text/javascript" src="js/highlight.pack.js"></script><script type="text/javascript" src="js/main.js"></script></head>
<body>
<div id="fullbody">
<div id="header">
<div class="menu-top-container"></div>
<div id="shadow-block"><a class="logo" href="index.html"><img src="images/logo.svg" alt="OSGi Alliance Documentation" /><h1>OSGi Compendium Release 7</h1></a></div>
</div>
<div id="mobile-menu-icon">⋮</div>
<div id="column-two">
<div id="content">
<div id="scrollable">
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<td width="20%" align="left"><a accesskey="p" href="util.xml.html">Prev</a>
</td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> <a accesskey="n" href="util.measurement.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="chapter">
<div xmlns="" class="titlepage">
<div>
<div>
<h1 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="util.position"></a><span xmlns="" class="number">703</span> Position Specification
</h1>
</div>
<div>
<p xmlns="http://www.w3.org/1999/xhtml" class="releaseinfo"><a xmlns="" class="xref" href="util.position.html#org.osgi.util.position" title="703.9 org.osgi.util.position">Version 1.0</a></p>
</div>
</div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137370"></a><span xmlns="" class="number">703.1</span> Introduction
</h2>
</div>
</div>
</div>
<p>The <code class="code">Position</code> class is a utility providing bundle
developers with a consistent way of handling geographic positions in OSGi
applications. The <code class="code">Position</code> class is intended to be used with
the Wire Admin service but has wider applicability.
</p>
<p><a xmlns="" class="anchor" id="i1271205"></a>The <code class="code">Position</code> class is designed to be
compatible with the Global Positioning System (GPS). This specification
will not define or explain the complexities of positioning information. It
is assumed that the reader has the appropriate background to understand
this information.
</p>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h3 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="d0e137386"></a><span xmlns="" class="number">703.1.1</span> Essentials
</h3>
</div>
</div>
</div>
<div class="itemizedlist">
<ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<p><span class="emphasis"><em>Position</em></span> - Provide an information object
that has well defined semantics for a position.
</p>
</li>
<li class="listitem">
<p><span class="emphasis"><em>WGS-84</em></span> - Use the World Geodetic System 84
as the datum.
</p>
</li>
<li class="listitem">
<p><span class="emphasis"><em>Speed</em></span> - Provide speed and track
information.
</p>
</li>
<li class="listitem">
<p><span class="emphasis"><em>Errors</em></span> - Position information always has
certain errors or cannot be measured at all. This information must
be available to the users of the information.
</p>
</li>
<li class="listitem">
<p><span class="emphasis"><em>Units</em></span> - Use SI units for all
measurements.
</p>
</li>
<li class="listitem">
<p><span class="emphasis"><em>Wire Admin</em></span> - This specification must work
within the Wire Admin service.
</p>
</li>
</ul>
</div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h3 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="d0e137420"></a><span xmlns="" class="number">703.1.2</span> Entities
</h3>
</div>
</div>
</div>
<div class="itemizedlist">
<ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<p><span class="emphasis"><em>Position</em></span> - An object containing the
different aspects of a position.
</p>
</li>
<li class="listitem">
<p><span class="emphasis"><em>Measurement</em></span> - Contains a typed
measurement made at a certain time and with a specified
error.
</p>
</li>
</ul>
</div>
<div class="figure"><a xmlns="" class="anchor" id="d0e137434"></a><p class="title"><strong>Figure <span xmlns="" class="number">703</span>.1 Class Diagram, org.osgi.util.position</strong></p>
<div class="figure-contents">
<div class="mediaobject" align="center"><img src="images/703-position-classes.png" align="middle" width="443" height="110" alt="Class Diagram, org.osgi.util.position" /></div>
</div>
</div><br class="figure-break" /></div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137440"></a><span xmlns="" class="number">703.2</span> Positioning
</h2>
</div>
</div>
</div>
<p>The <code class="code">Position</code> class is used to give information about
the position and movement of a vehicle with a specified amount of
uncertainty. The position is based on WGS-84.
</p>
<p>The Position class offers the following information:</p>
<div class="itemizedlist">
<ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<p><a xmlns="" class="xref" href="util.position.html#org.osgi.util.position.Position.getLatitude--" title="703.9.2.3 public Measurement getLatitude()">getLatitude()</a> - The WGS-84 latitude of the current position.
The unit of a latitude must be rad (radians).
</p>
</li>
<li class="listitem">
<p><a xmlns="" class="xref" href="util.position.html#org.osgi.util.position.Position.getLongitude--" title="703.9.2.4 public Measurement getLongitude()">getLongitude()</a> - The WGS-84 longitude of the current
position. The unit of a longitude must be rad (radians).
</p>
</li>
<li class="listitem">
<p><a xmlns="" class="anchor" id="i1271218"></a><a xmlns="" class="xref" href="util.position.html#org.osgi.util.position.Position.getAltitude--" title="703.9.2.2 public Measurement getAltitude()">getAltitude()</a> - Altitude is expressed as height in meters
above the WGS-84 ellipsoid. This value can differ from the actual
height above mean sea level depending on the place on earth where the
measurement is taken place. This value is not corrected for the
geoid.
</p>
</li>
<li class="listitem">
<p><a xmlns="" class="xref" href="util.position.html#org.osgi.util.position.Position.getTrack--" title="703.9.2.6 public Measurement getTrack()">getTrack()</a> - The true north course of the vehicle in
radians.
</p>
</li>
<li class="listitem">
<p><a xmlns="" class="xref" href="util.position.html#org.osgi.util.position.Position.getSpeed--" title="703.9.2.5 public Measurement getSpeed()">getSpeed()</a> - The ground speed. This speed must not
include vertical speed.
</p>
</li>
</ul>
</div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137471"></a><span xmlns="" class="number">703.3</span> Units
</h2>
</div>
</div>
</div>
<p>Longitude and latitude are represented in radians, not degrees. This
is consistent with the use of the <code class="code">Measurement</code> object. Radians
can be converted to degrees with the following formula, when
<code class="code">lonlat</code> is the longitude or latitude:
</p><pre xmlns="" class="programlisting"><code>degrees = (lonlat / <span xmlns="http://www.w3.org/1999/xhtml" class="symbol">π</span>) * 180</code></pre><p>Calculation errors are significantly reduced when all calculations
are done with a single unit system. This approach increases the complexity
of presentation, but presentations are usually localized and require
conversion anyway. Also, the radians are the units in the SI system and
the java.lang.Math class uses only radians for angles.
</p>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137489"></a><span xmlns="" class="number">703.4</span> Optimizations
</h2>
</div>
</div>
</div>
<p>A <code class="code">Position</code> object must be immutable. It must remain its
original values after it is created.
</p>
<p>The <code class="code">Position</code> class is not final. This approach implies
that developers are allowed to sub-class it and provide optimized
implementations. For example, it is possible that the
<code class="code">Measurement</code> objects are only constructed when actually
requested.
</p>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137505"></a><span xmlns="" class="number">703.5</span> Errors
</h2>
</div>
</div>
</div>
<p>Positioning information is never exact. Even large errors can exist
in certain conditions. For this reason, the <code class="code">Position</code> class
returns all its measurements as <code class="code">Measurement</code> objects. The
<code class="code">Measurement</code> class maintains an error value for each
measurement.
</p>
<p>In certain cases it is not possible to supply a value; in those
cases, the method should return a <code class="code">NaN</code> as specified in the
<code class="code">Measurement</code> class.
</p>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137527"></a><span xmlns="" class="number">703.6</span> Using Position With Wire Admin
</h2>
</div>
</div>
</div>
<p><a xmlns="" class="anchor" id="i1271250"></a>The primary reason the Position is specified, is
to use it with the <a xmlns="" class="xref" href="service.wireadmin.html" title="108 Wire Admin Service Specification"><em xmlns="http://www.w3.org/1999/xhtml">Wire Admin Service Specification</em></a>. A bundle that
needs position information should register a Consumer service and the
configuration should connect this service to an appropriate Producer
service.
</p>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137534"></a><span xmlns="" class="number">703.7</span> Related Standards
</h2>
</div>
</div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h3 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="i1271252"></a><span xmlns="" class="number">703.7.1</span> JSR 179
</h3>
</div>
</div>
</div>
<p><a xmlns="" class="anchor" id="i1271253"></a>In JCP, started <a xmlns="" class="xref" href="util.position.html#i1255323" title="Location API for J2ME">[2] <em>Location API for J2ME</em></a>. This
API is targeted at embedded systems and is likely to not contain some of
the features found in this API. This API is targeted to be reviewed at
Q4 of 2002. This API should be considered in a following release.
</p>
</div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="d0e137544"></a><span xmlns="" class="number">703.8</span> Security
</h2>
</div>
</div>
</div>
<p>The security aspects of the <code class="code">Position</code> class are
delegated to the security aspects of the Wire Admin service. The
<code class="code">Position</code> object only carries the information. The Wire Admin
service will define what Consumer services will receive position
information from what Producer services. It is therefore up to the
administrator of the Wire Admin service to assure that only trusted
bundles receive this information, or can supply it.
</p>
</div>
<div class="section package">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="org.osgi.util.position"></a><span xmlns="" class="number">703.9</span> org.osgi.util.position
</h2>
</div>
<div>
<p xmlns="http://www.w3.org/1999/xhtml" class="releaseinfo">Version 1.0</p>
</div>
</div>
</div>
<p>
Position Package Version 1.0.
</p>
<p>
Bundles wishing to use this package must list the package in the
Import-Package header of the bundle's manifest.
</p>
<p>
Example import for consumers using the API in this package:
</p>
<p>
<code class="code">Import-Package: org.osgi.util.position; version="[1.0,2.0)"</code>
</p>
<div class="section summary">
<div xmlns="" class="titlepage">
<div>
<div>
<h3 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="d0e137574"></a><span xmlns="" class="number">703.9.1</span> Summary
</h3>
</div>
</div>
</div>
<div class="itemizedlist">
<ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<p>
<a xmlns="" class="link" href="util.position.html#org.osgi.util.position.Position" title="703.9.2 public class Position">
<code xmlns="http://www.w3.org/1999/xhtml" class="code">Position</code>
</a> -
Position represents a geographic location, based on the WGS84 System (World
Geodetic System 1984).
</p>
</li>
</ul>
</div>
</div>
<div class="section class">
<div xmlns="" class="titlepage">
<div>
<div>
<h3 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position"></a><span xmlns="" class="number">703.9.2</span> public class Position
</h3>
</div>
</div>
</div>
<p>
Position represents a geographic location, based on the WGS84 System (World
Geodetic System 1984).
</p>
<p>
The <code class="code">org.osgi.util.measurement.Measurement</code> class is used to represent
the values that make up a position.
</p>
<p></p>
<p>
A given position object may lack any of it's components, i.e. the altitude
may not be known. Such missing values will be represented by null.
</p>
<p>
Position does not override the implementation of either equals() or
hashCode() because it is not clear how missing values should be handled. It
is up to the user of a position to determine how best to compare two position
objects. A <code class="code">Position</code> object is immutable.
</p>
<p xmlns="" class="parameter"><label>Concurrency</label><span>Immutable </span></p>
<div class="section method">
<div xmlns="" class="titlepage">
<div>
<div>
<h4 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position.Position-Measurement-Measurement-Measurement-Measurement-Measurement-"></a><span xmlns="" class="number">703.9.2.1</span> public Position(Measurement lat, Measurement lon, Measurement alt, Measurement speed, Measurement track)
</h4>
</div>
</div>
</div>
<p xmlns="" class="parameter"><label>lat</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object specifying the latitude in
radians, or null</span></p>
<p xmlns="" class="parameter"><label>lon</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object specifying the longitude in
radians, or null</span></p>
<p xmlns="" class="parameter"><label>alt</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object specifying the altitude in
meters, or null</span></p>
<p xmlns="" class="parameter"><label>speed</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object specifying the speed in meters
per second, or null</span></p>
<p xmlns="" class="parameter"><label>track</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object specifying the track in
radians, or null</span></p>
<p xmlns="" class="description"><label>□</label><span>
Constructs a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Position</code> object with the given values.
</span></p>
</div>
<div class="section method">
<div xmlns="" class="titlepage">
<div>
<div>
<h4 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position.getAltitude--"></a><span xmlns="" class="number">703.9.2.2</span> public Measurement getAltitude()
</h4>
</div>
</div>
</div>
<p xmlns="" class="description"><label>□</label><span>
Returns the altitude of this position in meters.
</span></p>
<p xmlns="" class="parameter"><label>Returns</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object in <code xmlns="http://www.w3.org/1999/xhtml" class="code">Unit.m</code> representing the
altitude in meters above the ellipsoid <code xmlns="http://www.w3.org/1999/xhtml" class="code">null</code> if the
altitude is not known.</span></p>
</div>
<div class="section method">
<div xmlns="" class="titlepage">
<div>
<div>
<h4 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position.getLatitude--"></a><span xmlns="" class="number">703.9.2.3</span> public Measurement getLatitude()
</h4>
</div>
</div>
</div>
<p xmlns="" class="description"><label>□</label><span>
Returns the latitude of this position in radians.
</span></p>
<p xmlns="" class="parameter"><label>Returns</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object in <code xmlns="http://www.w3.org/1999/xhtml" class="code">Unit.rad</code> representing the
latitude, or <code xmlns="http://www.w3.org/1999/xhtml" class="code">null</code> if the latitude is not known..</span></p>
</div>
<div class="section method">
<div xmlns="" class="titlepage">
<div>
<div>
<h4 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position.getLongitude--"></a><span xmlns="" class="number">703.9.2.4</span> public Measurement getLongitude()
</h4>
</div>
</div>
</div>
<p xmlns="" class="description"><label>□</label><span>
Returns the longitude of this position in radians.
</span></p>
<p xmlns="" class="parameter"><label>Returns</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object in <code xmlns="http://www.w3.org/1999/xhtml" class="code">Unit.rad</code> representing the
longitude, or <code xmlns="http://www.w3.org/1999/xhtml" class="code">null</code> if the longitude is not known.</span></p>
</div>
<div class="section method">
<div xmlns="" class="titlepage">
<div>
<div>
<h4 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position.getSpeed--"></a><span xmlns="" class="number">703.9.2.5</span> public Measurement getSpeed()
</h4>
</div>
</div>
</div>
<p xmlns="" class="description"><label>□</label><span>
Returns the ground speed of this position in meters per second.
</span></p>
<p xmlns="" class="parameter"><label>Returns</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object in <code xmlns="http://www.w3.org/1999/xhtml" class="code">Unit.m_s</code> representing the
speed, or <code xmlns="http://www.w3.org/1999/xhtml" class="code">null</code> if the speed is not known..</span></p>
</div>
<div class="section method">
<div xmlns="" class="titlepage">
<div>
<div>
<h4 xmlns="http://www.w3.org/1999/xhtml" class="title"><a xmlns="" class="anchor" id="org.osgi.util.position.Position.getTrack--"></a><span xmlns="" class="number">703.9.2.6</span> public Measurement getTrack()
</h4>
</div>
</div>
</div>
<p xmlns="" class="description"><label>□</label><span>
Returns the track of this position in radians as a compass heading. The
track is the extrapolation of previous previously measured positions to a
future position.
</span></p>
<p xmlns="" class="parameter"><label>Returns</label><span>a <code xmlns="http://www.w3.org/1999/xhtml" class="code">Measurement</code> object in <code xmlns="http://www.w3.org/1999/xhtml" class="code">Unit.rad</code> representing the
track, or <code xmlns="http://www.w3.org/1999/xhtml" class="code">null</code> if the track is not known..</span></p>
</div>
</div>
</div>
<div class="section">
<div xmlns="" class="titlepage">
<div>
<div>
<h2 xmlns="http://www.w3.org/1999/xhtml" class="title" style="clear: both"><a xmlns="" class="anchor" id="util.position.references"></a><span xmlns="" class="number">703.10</span> References
</h2>
</div>
</div>
</div>
<div class="bibliolist">
<div xmlns="" class="bibliomixed"><a class="anchor" id="d0e137758"></a><p class="bibliomixed">[1]<span xmlns="http://www.w3.org/1999/xhtml" class="title">World Geodetic System 84
(WGS-84)</span><span xmlns="http://www.w3.org/1999/xhtml" class="biblioid"><a xmlns="" class="link" href="http://earth-info.nga.mil/GandG/publications/tr8350.2/tr8350_2.html" target="_top">http://earth-info.nga.mil/GandG/publications/tr8350.2/tr8350_2.html</a></span></p>
</div>
<div xmlns="" class="bibliomixed"><a class="anchor" id="i1255323"></a><p class="bibliomixed">[2]<span xmlns="http://www.w3.org/1999/xhtml" class="title">Location API for
J2ME</span><span xmlns="http://www.w3.org/1999/xhtml" class="biblioid"><a xmlns="" class="link" href="http://www.jcp.org/jsr/detail/179.jsp" target="_top">http://www.jcp.org/jsr/detail/179.jsp</a></span></p>
</div>
</div>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="util.xml.html">Prev</a>
</td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> <a accesskey="n" href="util.measurement.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top"> </td>
<td width="20%" align="center"><a accesskey="h" href="toc.html">Home</a></td>
<td width="40%" align="right" valign="top"> </td>
</tr>
</table>
</div>
</div>
</div>
<div id="sidebar">
<ul id="tree" class="filetree">
<li id="toc_2"><span class="handle">+ </span><span class="file"><a href="index.html" tabindex="1"><span class="innertitle">OSGi Specification License, Version 2.0</span></a></span><ul class="">
<li><span class="file"><a href="index.html#d0e21" tabindex="1"><span class="innertitle">License Grant</span></a></span></li>
<li><span class="file"><a href="index.html#d0e28" tabindex="1"><span class="innertitle">No Warranties and Limitation of Liability</span></a></span></li>
<li><span class="file"><a href="index.html#d0e33" tabindex="1"><span class="innertitle">Covenant Not to Assert</span></a></span></li>
<li><span class="file"><a href="index.html#d0e38" tabindex="1"><span class="innertitle">General</span></a></span></li>
<li><span class="file"><a href="index.html#d0e45" tabindex="1"><span class="innertitle">Trademarks</span></a></span></li>
<li><span class="file"><a href="index.html#d0e50" tabindex="1"><span class="innertitle">Feedback</span></a></span></li>
</ul>
</li>
<li id="toc_3"><span class="handle">+ </span><span class="file"><a href="introduction.html" tabindex="1"><span class="number">1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="introduction.html#d0e68" tabindex="1"><span class="number">1.1 </span><span class="innertitle">Reader Level</span></a></span></li>
<li><span class="file"><a href="introduction.html#d0e94" tabindex="1"><span class="number">1.2 </span><span class="innertitle">Version Information</span></a></span><ul class="">
<li><span class="file"><a href="introduction.html#intro.core.release" tabindex="1"><span class="number">1.2.1 </span><span class="innertitle">OSGi Core Release 7</span></a></span></li>
<li><span class="file"><a href="introduction.html#d0e108" tabindex="1"><span class="number">1.2.2 </span><span class="innertitle">Component Versions</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="introduction.html#d0e682" tabindex="1"><span class="number">1.3 </span><span class="innertitle">References</span></a></span></li>
<li><span class="file"><a href="introduction.html#d0e693" tabindex="1"><span class="number">1.4 </span><span class="innertitle">Changes</span></a></span></li>
</ul>
</li>
<li id="toc_4"><span class="handle">+ </span><span class="file"><a href="service.remoteservices.html" tabindex="1"><span class="number">100 </span><span class="innertitle">Remote Services</span></a></span><ul class="">
<li><span class="file"><a href="service.remoteservices.html#d0e823" tabindex="1"><span class="number">100.1 </span><span class="innertitle">The Fallacies</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#i1710847" tabindex="1"><span class="number">100.2 </span><span class="innertitle">Remote Service Properties</span></a></span><ul class="">
<li><span class="file"><a href="service.remoteservices.html#i1709051" tabindex="1"><span class="number">100.2.1 </span><span class="innertitle">Registering a Service for Export</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e1152" tabindex="1"><span class="number">100.2.2 </span><span class="innertitle">Getting an Imported Service</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#i1699559" tabindex="1"><span class="number">100.2.3 </span><span class="innertitle">On Demand Import</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#i1693415" tabindex="1"><span class="number">100.3 </span><span class="innertitle">Intents</span></a></span><ul class="">
<li><span class="file"><a href="service.remoteservices.html#service.remoteservices-osgi.basic" tabindex="1"><span class="number">100.3.1 </span><span class="innertitle">Basic Remote Services: osgi.basic</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#d0e1407" tabindex="1"><span class="number">100.3.2 </span><span class="innertitle">Asynchronous Remote Services: osgi.async</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#d0e1464" tabindex="1"><span class="number">100.3.3 </span><span class="innertitle">Confidential Remote Services: osgi.confidential</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e1474" tabindex="1"><span class="number">100.3.4 </span><span class="innertitle">Private Remote Services: osgi.private</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#d0e1498" tabindex="1"><span class="number">100.4 </span><span class="innertitle">General Usage</span></a></span><ul class="">
<li><span class="file"><a href="service.remoteservices.html#d0e1501" tabindex="1"><span class="number">100.4.1 </span><span class="innertitle">Call by Value</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e1508" tabindex="1"><span class="number">100.4.2 </span><span class="innertitle">Data Fencing</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e1522" tabindex="1"><span class="number">100.4.3 </span><span class="innertitle">Remote Services Life Cycle</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e1527" tabindex="1"><span class="number">100.4.4 </span><span class="innertitle">Runtime</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e1532" tabindex="1"><span class="number">100.4.5 </span><span class="innertitle">Exceptions</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#i1698916" tabindex="1"><span class="number">100.5 </span><span class="innertitle">Configuration Types</span></a></span><ul class="">
<li><span class="file"><a href="service.remoteservices.html#d0e1562" tabindex="1"><span class="number">100.5.1 </span><span class="innertitle">Configuration Type Properties</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#i1708968" tabindex="1"><span class="number">100.5.2 </span><span class="innertitle">Dependencies</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#d0e2038" tabindex="1"><span class="number">100.6 </span><span class="innertitle">Security</span></a></span><ul class="">
<li><span class="file"><a href="service.remoteservices.html#d0e2058" tabindex="1"><span class="number">100.6.1 </span><span class="innertitle">Limiting Exports and Imports</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.remoteservices.html#d0e2074" tabindex="1"><span class="number">100.7 </span><span class="innertitle">References</span></a></span></li>
<li><span class="file"><a href="service.remoteservices.html#d0e2103" tabindex="1"><span class="number">100.8 </span><span class="innertitle">Changes</span></a></span></li>
</ul>
</li>
<li id="toc_5"><span class="handle">+ </span><span class="file"><a href="service.log.html" tabindex="1"><span class="number">101 </span><span class="innertitle">Log Service Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e2130" tabindex="1"><span class="number">101.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e2139" tabindex="1"><span class="number">101.1.1 </span><span class="innertitle">Entities</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.log.html#d0e2215" tabindex="1"><span class="number">101.2 </span><span class="innertitle">The Logger Interface</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e2377" tabindex="1"><span class="number">101.3 </span><span class="innertitle">Obtaining a Logger</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e2447" tabindex="1"><span class="number">101.4 </span><span class="innertitle">Logger Configuration</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e2548" tabindex="1"><span class="number">101.4.1 </span><span class="innertitle">Configuration Admin Integration</span></a></span></li>
<li><span class="file"><a href="service.log.html#service.log-effective.log.level" tabindex="1"><span class="number">101.4.2 </span><span class="innertitle">Effective Log Level</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.log.html#d0e2671" tabindex="1"><span class="number">101.5 </span><span class="innertitle">Log Stream Provider</span></a></span></li>
<li><span class="file"><a href="service.log.html#i1210758" tabindex="1"><span class="number">101.6 </span><span class="innertitle">Log Reader Service</span></a></span></li>
<li><span class="file"><a href="service.log.html#i1231250" tabindex="1"><span class="number">101.7 </span><span class="innertitle">Log Entry Interface</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e2872" tabindex="1"><span class="number">101.8 </span><span class="innertitle">Mapping of Events</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e2883" tabindex="1"><span class="number">101.8.1 </span><span class="innertitle">Bundle Events Mapping</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e2986" tabindex="1"><span class="number">101.8.2 </span><span class="innertitle">Service Events Mapping</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e3084" tabindex="1"><span class="number">101.8.3 </span><span class="innertitle">Framework Events Mapping</span></a></span></li>
<li><span class="file"><a href="service.log.html#i1479168" tabindex="1"><span class="number">101.8.4 </span><span class="innertitle">Log Events</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.log.html#d0e3453" tabindex="1"><span class="number">101.9 </span><span class="innertitle">Log Service</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e3520" tabindex="1"><span class="number">101.10 </span><span class="innertitle">Capabilities</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e3575" tabindex="1"><span class="number">101.11 </span><span class="innertitle">Security</span></a></span></li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log" tabindex="1"><span class="number">101.12 </span><span class="innertitle">org.osgi.service.log</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e3627" tabindex="1"><span class="number">101.12.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.FormatterLogger" tabindex="1"><span class="number">101.12.2 </span><span class="innertitle">public interface FormatterLogger extends Logger</span></a></span></li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LogEntry" tabindex="1"><span class="number">101.12.3 </span><span class="innertitle">public interface LogEntry</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.Logger" tabindex="1"><span class="number">101.12.4 </span><span class="innertitle">public interface Logger</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LoggerConsumer" tabindex="1"><span class="number">101.12.5 </span><span class="innertitle">public interface LoggerConsumer<E extends Exception></span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LoggerFactory" tabindex="1"><span class="number">101.12.6 </span><span class="innertitle">public interface LoggerFactory</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LogLevel" tabindex="1"><span class="number">101.12.7 </span><span class="innertitle">enum LogLevel</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LogListener" tabindex="1"><span class="number">101.12.8 </span><span class="innertitle">public interface LogListener extends EventListener</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LogReaderService" tabindex="1"><span class="number">101.12.9 </span><span class="innertitle">public interface LogReaderService</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.LogService" tabindex="1"><span class="number">101.12.10 </span><span class="innertitle">public interface LogService extends LoggerFactory</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.admin" tabindex="1"><span class="number">101.13 </span><span class="innertitle">org.osgi.service.log.admin</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e5979" tabindex="1"><span class="number">101.13.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.admin.LoggerAdmin" tabindex="1"><span class="number">101.13.2 </span><span class="innertitle">public interface LoggerAdmin</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.admin.LoggerContext" tabindex="1"><span class="number">101.13.3 </span><span class="innertitle">public interface LoggerContext</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.stream" tabindex="1"><span class="number">101.14 </span><span class="innertitle">org.osgi.service.log.stream</span></a></span><ul class="">
<li><span class="file"><a href="service.log.html#d0e6282" tabindex="1"><span class="number">101.14.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.stream.LogStreamProvider" tabindex="1"><span class="number">101.14.2 </span><span class="innertitle">public interface LogStreamProvider</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.log.html#org.osgi.service.log.stream.LogStreamProvider.Options" tabindex="1"><span class="number">101.14.3 </span><span class="innertitle">enum LogStreamProvider.Options</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.log.html#d0e6419" tabindex="1"><span class="number">101.15 </span><span class="innertitle">References</span></a></span></li>
<li><span class="file"><a href="service.log.html#d0e6430" tabindex="1"><span class="number">101.16 </span><span class="innertitle">Changes</span></a></span></li>
</ul>
</li>
<li id="toc_6"><span class="handle">+ </span><span class="file"><a href="service.http.html" tabindex="1"><span class="number">102 </span><span class="innertitle">Http Service Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.http.html#d0e6460" tabindex="1"><span class="number">102.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.http.html#d0e6496" tabindex="1"><span class="number">102.1.1 </span><span class="innertitle">Entities</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.http.html#i1223311" tabindex="1"><span class="number">102.2 </span><span class="innertitle">Registering Servlets</span></a></span></li>
<li><span class="file"><a href="service.http.html#d0e6684" tabindex="1"><span class="number">102.3 </span><span class="innertitle">Registering Resources</span></a></span></li>
<li><span class="file"><a href="service.http.html#i1208280" tabindex="1"><span class="number">102.4 </span><span class="innertitle">Mapping HTTP Requests to Servlet and Resource Registrations</span></a></span></li>
<li><span class="file"><a href="service.http.html#d0e7040" tabindex="1"><span class="number">102.5 </span><span class="innertitle">The Default Http Context Object</span></a></span></li>
<li><span class="file"><a href="service.http.html#i1243471" tabindex="1"><span class="number">102.6 </span><span class="innertitle">Multipurpose Internet Mail Extension (MIME) Types</span></a></span></li>
<li><span class="file"><a href="service.http.html#service.http.authentication" tabindex="1"><span class="number">102.7 </span><span class="innertitle">Authentication</span></a></span></li>
<li><span class="file"><a href="service.http.html#d0e7408" tabindex="1"><span class="number">102.8 </span><span class="innertitle">Security</span></a></span><ul class="">
<li><span class="file"><a href="service.http.html#d0e7413" tabindex="1"><span class="number">102.8.1 </span><span class="innertitle">Accessing Resources with the Default Http Context</span></a></span></li>
<li><span class="file"><a href="service.http.html#d0e7447" tabindex="1"><span class="number">102.8.2 </span><span class="innertitle">Accessing Other Types of Resources</span></a></span></li>
<li><span class="file"><a href="service.http.html#d0e7515" tabindex="1"><span class="number">102.8.3 </span><span class="innertitle">Servlet and HttpContext objects</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.http.html#d0e7526" tabindex="1"><span class="number">102.9 </span><span class="innertitle">Configuration Properties</span></a></span></li>
<li><span class="file"><a href="service.http.html#org.osgi.service.http" tabindex="1"><span class="number">102.10 </span><span class="innertitle">org.osgi.service.http</span></a></span><ul class="">
<li><span class="file"><a href="service.http.html#d0e7570" tabindex="1"><span class="number">102.10.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.http.html#org.osgi.service.http.HttpContext" tabindex="1"><span class="number">102.10.2 </span><span class="innertitle">public interface HttpContext</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.http.html#org.osgi.service.http.HttpService" tabindex="1"><span class="number">102.10.3 </span><span class="innertitle">public interface HttpService</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.http.html#org.osgi.service.http.NamespaceException" tabindex="1"><span class="number">102.10.4 </span><span class="innertitle">public class NamespaceException extends Exception</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.http.html#d0e8295" tabindex="1"><span class="number">102.11 </span><span class="innertitle">References</span></a></span></li>
</ul>
</li>
<li id="toc_7"><span class="handle">+ </span><span class="file"><a href="service.device.html" tabindex="1"><span class="number">103 </span><span class="innertitle">Device Access Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e8350" tabindex="1"><span class="number">103.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e8363" tabindex="1"><span class="number">103.1.1 </span><span class="innertitle">Essentials</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e8430" tabindex="1"><span class="number">103.1.2 </span><span class="innertitle">Operation</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e8438" tabindex="1"><span class="number">103.1.3 </span><span class="innertitle">Entities</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#i1292342" tabindex="1"><span class="number">103.2 </span><span class="innertitle">Device Services</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#service.device-device.service.registration" tabindex="1"><span class="number">103.2.1 </span><span class="innertitle">Device Service Registration</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e8619" tabindex="1"><span class="number">103.2.2 </span><span class="innertitle">Device Service Attachment</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#service.device-device.category" tabindex="1"><span class="number">103.3 </span><span class="innertitle">Device Category Specifications</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e8667" tabindex="1"><span class="number">103.3.1 </span><span class="innertitle">Device Category Guidelines</span></a></span></li>
<li><span class="file"><a href="service.device.html#i1306027" tabindex="1"><span class="number">103.3.2 </span><span class="innertitle">Sample Device Category Specification</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e8823" tabindex="1"><span class="number">103.3.3 </span><span class="innertitle">Match Example</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#i1282334" tabindex="1"><span class="number">103.4 </span><span class="innertitle">Driver Services</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e8934" tabindex="1"><span class="number">103.4.1 </span><span class="innertitle">Driver Bundles</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e8958" tabindex="1"><span class="number">103.4.2 </span><span class="innertitle">Driver Taxonomy</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.device.html#d0e9162" tabindex="1"><span class="number">103.4.3 </span><span class="innertitle">Driver Service Registration</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9216" tabindex="1"><span class="number">103.4.4 </span><span class="innertitle">Driver Service Unregistration</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9228" tabindex="1"><span class="number">103.4.5 </span><span class="innertitle">Driver Service Methods</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9280" tabindex="1"><span class="number">103.4.6 </span><span class="innertitle">Idle Driver Bundles</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#i1292350" tabindex="1"><span class="number">103.5 </span><span class="innertitle">Driver Locator Service</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e9311" tabindex="1"><span class="number">103.5.1 </span><span class="innertitle">The DriverLocator Interface</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9350" tabindex="1"><span class="number">103.5.2 </span><span class="innertitle">A Driver Example</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#i1286950" tabindex="1"><span class="number">103.6 </span><span class="innertitle">The Driver Selector Service</span></a></span></li>
<li><span class="file"><a href="service.device.html#i1258659" tabindex="1"><span class="number">103.7 </span><span class="innertitle">Device Manager</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e9477" tabindex="1"><span class="number">103.7.1 </span><span class="innertitle">Device Manager Startup</span></a></span></li>
<li><span class="file"><a href="service.device.html#i1288442" tabindex="1"><span class="number">103.7.2 </span><span class="innertitle">The Device Attachment Algorithm</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9498" tabindex="1"><span class="number">103.7.3 </span><span class="innertitle">Legend</span></a></span></li>
<li><span class="file"><a href="service.device.html#i1313417" tabindex="1"><span class="number">103.7.4 </span><span class="innertitle">Optimizations</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9715" tabindex="1"><span class="number">103.7.5 </span><span class="innertitle">Driver Bundle Reclamation</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9728" tabindex="1"><span class="number">103.7.6 </span><span class="innertitle">Handling Driver Bundle Updates</span></a></span></li>
<li><span class="file"><a href="service.device.html#d0e9751" tabindex="1"><span class="number">103.7.7 </span><span class="innertitle">Simultaneous Device Service and Driver Service
Registration</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#d0e9773" tabindex="1"><span class="number">103.8 </span><span class="innertitle">Security</span></a></span></li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device" tabindex="1"><span class="number">103.9 </span><span class="innertitle">org.osgi.service.device</span></a></span><ul class="">
<li><span class="file"><a href="service.device.html#d0e9828" tabindex="1"><span class="number">103.9.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device.Constants" tabindex="1"><span class="number">103.9.2 </span><span class="innertitle">public interface Constants</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device.Device" tabindex="1"><span class="number">103.9.3 </span><span class="innertitle">public interface Device</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device.Driver" tabindex="1"><span class="number">103.9.4 </span><span class="innertitle">public interface Driver</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device.DriverLocator" tabindex="1"><span class="number">103.9.5 </span><span class="innertitle">public interface DriverLocator</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device.DriverSelector" tabindex="1"><span class="number">103.9.6 </span><span class="innertitle">public interface DriverSelector</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.device.html#org.osgi.service.device.Match" tabindex="1"><span class="number">103.9.7 </span><span class="innertitle">public interface Match</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.device.html#d0e10391" tabindex="1"><span class="number">103.10 </span><span class="innertitle">References</span></a></span></li>
</ul>
</li>
<li id="toc_8"><span class="handle">+ </span><span class="file"><a href="service.cm.html" tabindex="1"><span class="number">104 </span><span class="innertitle">Configuration Admin Service Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e10426" tabindex="1"><span class="number">104.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e10437" tabindex="1"><span class="number">104.1.1 </span><span class="innertitle">Essentials</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e10515" tabindex="1"><span class="number">104.1.2 </span><span class="innertitle">Entities</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e10591" tabindex="1"><span class="number">104.1.3 </span><span class="innertitle">Synopsis</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#i1358725" tabindex="1"><span class="number">104.2 </span><span class="innertitle">Configuration Targets</span></a></span></li>
<li><span class="file"><a href="service.cm.html#i1233800" tabindex="1"><span class="number">104.3 </span><span class="innertitle">The Persistent Identity</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e10696" tabindex="1"><span class="number">104.3.1 </span><span class="innertitle">PID Syntax</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#service.cm-targeted.pids" tabindex="1"><span class="number">104.3.2 </span><span class="innertitle">Targeted PIDs</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-extenders.targeted.pids" tabindex="1"><span class="number">104.3.3 </span><span class="innertitle">Extenders and Targeted PIDs</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e10880" tabindex="1"><span class="number">104.4 </span><span class="innertitle">The Configuration Object</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#service.cm-location.binding" tabindex="1"><span class="number">104.4.1 </span><span class="innertitle">Location Binding</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11038" tabindex="1"><span class="number">104.4.2 </span><span class="innertitle">Dynamic Binding</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm.configuration.properties" tabindex="1"><span class="number">104.4.3 </span><span class="innertitle">Configuration Properties</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm.propertypropagation" tabindex="1"><span class="number">104.4.4 </span><span class="innertitle">Property Propagation</span></a></span></li>
<li><span class="file"><a href="service.cm.html#i1374751" tabindex="1"><span class="number">104.4.5 </span><span class="innertitle">Automatic Properties</span></a></span></li>
<li><span class="file"><a href="service.cm.html#i1488808" tabindex="1"><span class="number">104.4.6 </span><span class="innertitle">Equality</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e11202" tabindex="1"><span class="number">104.5 </span><span class="innertitle">Managed Service</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e11231" tabindex="1"><span class="number">104.5.1 </span><span class="innertitle">Singletons</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11241" tabindex="1"><span class="number">104.5.2 </span><span class="innertitle">Networks</span></a></span></li>
<li><span class="file"><a href="service.cm.html#i1233865" tabindex="1"><span class="number">104.5.3 </span><span class="innertitle">Configuring Managed Services</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11332" tabindex="1"><span class="number">104.5.4 </span><span class="innertitle">Race Conditions</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11339" tabindex="1"><span class="number">104.5.5 </span><span class="innertitle">Examples of Managed Service</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e11381" tabindex="1"><span class="number">104.5.6 </span><span class="innertitle">Deletion</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#i1299227" tabindex="1"><span class="number">104.6 </span><span class="innertitle">Managed Service Factory</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e11438" tabindex="1"><span class="number">104.6.1 </span><span class="innertitle">When to Use a Managed Service Factory</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e11494" tabindex="1"><span class="number">104.6.2 </span><span class="innertitle">Registration</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11551" tabindex="1"><span class="number">104.6.3 </span><span class="innertitle">Deletion</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11562" tabindex="1"><span class="number">104.6.4 </span><span class="innertitle">Managed Service Factory Example</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11634" tabindex="1"><span class="number">104.6.5 </span><span class="innertitle">Multiple Consoles Example</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e11641" tabindex="1"><span class="number">104.7 </span><span class="innertitle">Configuration Admin Service</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#i1374750" tabindex="1"><span class="number">104.7.1 </span><span class="innertitle">Creating a Managed Service Configuration Object</span></a></span></li>
<li><span class="file"><a href="service.cm.html#i1761778" tabindex="1"><span class="number">104.7.2 </span><span class="innertitle">Creating a Managed Service Factory Configuration Object</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e11860" tabindex="1"><span class="number">104.7.3 </span><span class="innertitle">Accessing Existing Configurations</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-updating.configuration" tabindex="1"><span class="number">104.7.4 </span><span class="innertitle">Updating a Configuration</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-multi.locations" tabindex="1"><span class="number">104.7.5 </span><span class="innertitle">Using Multi-Locations</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-regions" tabindex="1"><span class="number">104.7.6 </span><span class="innertitle">Regions</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12168" tabindex="1"><span class="number">104.7.7 </span><span class="innertitle">Deletion</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12238" tabindex="1"><span class="number">104.7.8 </span><span class="innertitle">Updating a Bundle's Own Configuration</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-configuration.attributes" tabindex="1"><span class="number">104.7.9 </span><span class="innertitle">Configuration Attributes</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#i1693263" tabindex="1"><span class="number">104.8 </span><span class="innertitle">Configuration Events</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e12354" tabindex="1"><span class="number">104.8.1 </span><span class="innertitle">Event Admin Service and Configuration Change Events</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#i1459884" tabindex="1"><span class="number">104.9 </span><span class="innertitle">Configuration Plugin</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#i1490850" tabindex="1"><span class="number">104.9.1 </span><span class="innertitle">Limiting The Targets</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12499" tabindex="1"><span class="number">104.9.2 </span><span class="innertitle">Example of Property Expansion</span></a></span></li>
<li><span class="file"><a href="service.cm.html#i1490867" tabindex="1"><span class="number">104.9.3 </span><span class="innertitle">Configuration Data Modifications</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12577" tabindex="1"><span class="number">104.9.4 </span><span class="innertitle">Forcing a Callback</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-plugin.order" tabindex="1"><span class="number">104.9.5 </span><span class="innertitle">Calling Order</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-plugin.manual" tabindex="1"><span class="number">104.9.6 </span><span class="innertitle">Manual Invocation</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#i1288153" tabindex="1"><span class="number">104.10 </span><span class="innertitle">Meta Typing</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-coordinatorsupport" tabindex="1"><span class="number">104.11 </span><span class="innertitle">Coordinator Support</span></a></span></li>
<li><span class="file"><a href="service.cm.html#service.cm-capabilities" tabindex="1"><span class="number">104.12 </span><span class="innertitle">Capabilities</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e12707" tabindex="1"><span class="number">104.12.1 </span><span class="innertitle">osgi.implementation Capability</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12743" tabindex="1"><span class="number">104.12.2 </span><span class="innertitle">osgi.service Capability</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e12761" tabindex="1"><span class="number">104.13 </span><span class="innertitle">Security</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#i1693439" tabindex="1"><span class="number">104.13.1 </span><span class="innertitle">Configuration Permission</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12802" tabindex="1"><span class="number">104.13.2 </span><span class="innertitle">Permissions Summary</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e12882" tabindex="1"><span class="number">104.13.3 </span><span class="innertitle">Configuration and Permission Administration</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm" tabindex="1"><span class="number">104.14 </span><span class="innertitle">org.osgi.service.cm</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e12939" tabindex="1"><span class="number">104.14.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.cm.html#d0e13078" tabindex="1"><span class="number">104.14.2 </span><span class="innertitle">Permissions</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.Configuration" tabindex="1"><span class="number">104.14.3 </span><span class="innertitle">public interface Configuration</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.Configuration.ConfigurationAttribute" tabindex="1"><span class="number">104.14.4 </span><span class="innertitle">enum Configuration.ConfigurationAttribute</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationAdmin" tabindex="1"><span class="number">104.14.5 </span><span class="innertitle">public interface ConfigurationAdmin</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationConstants" tabindex="1"><span class="number">104.14.6 </span><span class="innertitle">public final class ConfigurationConstants</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationEvent" tabindex="1"><span class="number">104.14.7 </span><span class="innertitle">public class ConfigurationEvent</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationException" tabindex="1"><span class="number">104.14.8 </span><span class="innertitle">public class ConfigurationException extends Exception</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationListener" tabindex="1"><span class="number">104.14.9 </span><span class="innertitle">public interface ConfigurationListener</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationPermission" tabindex="1"><span class="number">104.14.10 </span><span class="innertitle">public final class ConfigurationPermission extends BasicPermission</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ConfigurationPlugin" tabindex="1"><span class="number">104.14.11 </span><span class="innertitle">public interface ConfigurationPlugin</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ManagedService" tabindex="1"><span class="number">104.14.12 </span><span class="innertitle">public interface ManagedService</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ManagedServiceFactory" tabindex="1"><span class="number">104.14.13 </span><span class="innertitle">public interface ManagedServiceFactory</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.ReadOnlyConfigurationException" tabindex="1"><span class="number">104.14.14 </span><span class="innertitle">public class ReadOnlyConfigurationException extends RuntimeException</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.SynchronousConfigurationListener" tabindex="1"><span class="number">104.14.15 </span><span class="innertitle">public interface SynchronousConfigurationListener extends ConfigurationListener</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.annotations" tabindex="1"><span class="number">104.15 </span><span class="innertitle">org.osgi.service.cm.annotations</span></a></span><ul class="">
<li><span class="file"><a href="service.cm.html#d0e16255" tabindex="1"><span class="number">104.15.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.cm.html#org.osgi.service.cm.annotations.RequireConfigurationAdmin" tabindex="1"><span class="number">104.15.2 </span><span class="innertitle">@RequireConfigurationAdmin</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.cm.html#d0e16297" tabindex="1"><span class="number">104.16 </span><span class="innertitle">Changes</span></a></span></li>
</ul>
</li>
<li id="toc_9"><span class="handle">+ </span><span class="file"><a href="service.metatype.html" tabindex="1"><span class="number">105 </span><span class="innertitle">Metatype Service Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.metatype.html#d0e16358" tabindex="1"><span class="number">105.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.metatype.html#d0e16386" tabindex="1"><span class="number">105.1.1 </span><span class="innertitle">Essentials</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1504332" tabindex="1"><span class="number">105.1.2 </span><span class="innertitle">Entities</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e16476" tabindex="1"><span class="number">105.1.3 </span><span class="innertitle">Operation</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.metatype.html#d0e16502" tabindex="1"><span class="number">105.2 </span><span class="innertitle">Attributes Model</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e16541" tabindex="1"><span class="number">105.3 </span><span class="innertitle">Object Class Definition</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1504333" tabindex="1"><span class="number">105.4 </span><span class="innertitle">Attribute Definition</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1450077" tabindex="1"><span class="number">105.5 </span><span class="innertitle">Meta Type Service</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1550143" tabindex="1"><span class="number">105.6 </span><span class="innertitle">Meta Type Provider Service</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1504250" tabindex="1"><span class="number">105.7 </span><span class="innertitle">Using the Meta Type Resources</span></a></span><ul class="">
<li><span class="file"><a href="service.metatype.html#d0e16879" tabindex="1"><span class="number">105.7.1 </span><span class="innertitle">XML Schema of a Meta Type Resource</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1492258" tabindex="1"><span class="number">105.7.2 </span><span class="innertitle">Designate Element</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#i1504251" tabindex="1"><span class="number">105.7.3 </span><span class="innertitle">Example Metadata File</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e17637" tabindex="1"><span class="number">105.7.4 </span><span class="innertitle">Object Element</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.metatype.html#i1502383" tabindex="1"><span class="number">105.8 </span><span class="innertitle">Meta Type Resource XML Schema</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#service.metatype-metatype.annotations" tabindex="1"><span class="number">105.9 </span><span class="innertitle">Meta Type Annotations</span></a></span><ul class="">
<li><span class="file"><a href="service.metatype.html#d0e17672" tabindex="1"><span class="number">105.9.1 </span><span class="innertitle">ObjectClassDefinition Annotation</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#service.metatype-ad.annotation" tabindex="1"><span class="number">105.9.2 </span><span class="innertitle">AttributeDefinition Annotation</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e17824" tabindex="1"><span class="number">105.9.3 </span><span class="innertitle">Designate Annotation</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.metatype.html#d0e17849" tabindex="1"><span class="number">105.10 </span><span class="innertitle">Limitations</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e17854" tabindex="1"><span class="number">105.11 </span><span class="innertitle">Related Standards</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#service.metatype-capabilities" tabindex="1"><span class="number">105.12 </span><span class="innertitle">Capabilities</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e17938" tabindex="1"><span class="number">105.13 </span><span class="innertitle">Security Considerations</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype" tabindex="1"><span class="number">105.14 </span><span class="innertitle">org.osgi.service.metatype</span></a></span><ul class="">
<li><span class="file"><a href="service.metatype.html#d0e17969" tabindex="1"><span class="number">105.14.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.AttributeDefinition" tabindex="1"><span class="number">105.14.2 </span><span class="innertitle">public interface AttributeDefinition</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.MetaTypeInformation" tabindex="1"><span class="number">105.14.3 </span><span class="innertitle">public interface MetaTypeInformation extends MetaTypeProvider</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.MetaTypeProvider" tabindex="1"><span class="number">105.14.4 </span><span class="innertitle">public interface MetaTypeProvider</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.MetaTypeService" tabindex="1"><span class="number">105.14.5 </span><span class="innertitle">public interface MetaTypeService</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.ObjectClassDefinition" tabindex="1"><span class="number">105.14.6 </span><span class="innertitle">public interface ObjectClassDefinition</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations" tabindex="1"><span class="number">105.15 </span><span class="innertitle">org.osgi.service.metatype.annotations</span></a></span><ul class="">
<li><span class="file"><a href="service.metatype.html#d0e18960" tabindex="1"><span class="number">105.15.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.AttributeDefinition" tabindex="1"><span class="number">105.15.2 </span><span class="innertitle">@AttributeDefinition</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.AttributeType" tabindex="1"><span class="number">105.15.3 </span><span class="innertitle">enum AttributeType</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.Designate" tabindex="1"><span class="number">105.15.4 </span><span class="innertitle">@Designate</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.Icon" tabindex="1"><span class="number">105.15.5 </span><span class="innertitle">@Icon</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.ObjectClassDefinition" tabindex="1"><span class="number">105.15.6 </span><span class="innertitle">@ObjectClassDefinition</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.Option" tabindex="1"><span class="number">105.15.7 </span><span class="innertitle">@Option</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.RequireMetaTypeExtender" tabindex="1"><span class="number">105.15.8 </span><span class="innertitle">@RequireMetaTypeExtender</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#org.osgi.service.metatype.annotations.RequireMetaTypeImplementation" tabindex="1"><span class="number">105.15.9 </span><span class="innertitle">@RequireMetaTypeImplementation</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.metatype.html#i1215848" tabindex="1"><span class="number">105.16 </span><span class="innertitle">References</span></a></span></li>
<li><span class="file"><a href="service.metatype.html#d0e20308" tabindex="1"><span class="number">105.17 </span><span class="innertitle">Changes</span></a></span></li>
</ul>
</li>
<li id="toc_10"><span class="handle">+ </span><span class="file"><a href="service.prefs.html" tabindex="1"><span class="number">106 </span><span class="innertitle">PreferencesService Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.prefs.html#d0e20332" tabindex="1"><span class="number">106.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.prefs.html#d0e20392" tabindex="1"><span class="number">106.1.1 </span><span class="innertitle">Essentials</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20432" tabindex="1"><span class="number">106.1.2 </span><span class="innertitle">Entities</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20459" tabindex="1"><span class="number">106.1.3 </span><span class="innertitle">Operation</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.prefs.html#d0e20472" tabindex="1"><span class="number">106.2 </span><span class="innertitle">Preferences Interface</span></a></span><ul class="">
<li><span class="file"><a href="service.prefs.html#d0e20492" tabindex="1"><span class="number">106.2.1 </span><span class="innertitle">Hierarchies</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20544" tabindex="1"><span class="number">106.2.2 </span><span class="innertitle">Naming</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20628" tabindex="1"><span class="number">106.2.3 </span><span class="innertitle">Tree Traversal Methods</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20654" tabindex="1"><span class="number">106.2.4 </span><span class="innertitle">Properties</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20710" tabindex="1"><span class="number">106.2.5 </span><span class="innertitle">Storing and Retrieving Properties</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20777" tabindex="1"><span class="number">106.2.6 </span><span class="innertitle">Defaults</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.prefs.html#d0e20809" tabindex="1"><span class="number">106.3 </span><span class="innertitle">Concurrency</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#d0e20873" tabindex="1"><span class="number">106.4 </span><span class="innertitle">PreferencesService Interface</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#i1423660" tabindex="1"><span class="number">106.5 </span><span class="innertitle">Cleanup</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#org.osgi.service.prefs" tabindex="1"><span class="number">106.6 </span><span class="innertitle">org.osgi.service.prefs</span></a></span><ul class="">
<li><span class="file"><a href="service.prefs.html#d0e20956" tabindex="1"><span class="number">106.6.1 </span><span class="innertitle">Summary</span></a></span></li>
<li><span class="file"><a href="service.prefs.html#org.osgi.service.prefs.BackingStoreException" tabindex="1"><span class="number">106.6.2 </span><span class="innertitle">public class BackingStoreException extends Exception</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.prefs.html#org.osgi.service.prefs.Preferences" tabindex="1"><span class="number">106.6.3 </span><span class="innertitle">public interface Preferences</span></a></span><ul class=""></ul>
</li>
<li><span class="file"><a href="service.prefs.html#org.osgi.service.prefs.PreferencesService" tabindex="1"><span class="number">106.6.4 </span><span class="innertitle">public interface PreferencesService</span></a></span><ul class=""></ul>
</li>
</ul>
</li>
<li><span class="file"><a href="service.prefs.html#d0e23175" tabindex="1"><span class="number">106.7 </span><span class="innertitle">References</span></a></span></li>
</ul>
</li>
<li id="toc_11"><span class="handle">+ </span><span class="file"><a href="service.useradmin.html" tabindex="1"><span class="number">107 </span><span class="innertitle">User Admin Service Specification</span></a></span><ul class="">
<li><span class="file"><a href="service.useradmin.html#d0e23198" tabindex="1"><span class="number">107.1 </span><span class="innertitle">Introduction</span></a></span><ul class="">
<li><span class="file"><a href="service.useradmin.html#d0e23219" tabindex="1"><span class="number">107.1.1 </span><span class="innertitle">Essentials</span></a></span></li>
<li><span class="file"><a href="service.useradmin.html#d0e23253" tabindex="1"><span class="number">107.1.2 </span><span class="innertitle">Entities</span></a></span></li>
<li><span class="file"><a href="service.useradmin.html#d0e23334" tabindex="1"><span class="number">107.1.3 </span><span class="innertitle">Operation</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.useradmin.html#d0e23486" tabindex="1"><span class="number">107.2 </span><span class="innertitle">Authentication</span></a></span><ul class="">
<li><span class="file"><a href="service.useradmin.html#d0e23507" tabindex="1"><span class="number">107.2.1 </span><span class="innertitle">Repository</span></a></span></li>
<li><span class="file"><a href="service.useradmin.html#d0e23589" tabindex="1"><span class="number">107.2.2 </span><span class="innertitle">Basic Authentication</span></a></span></li>
<li><span class="file"><a href="service.useradmin.html#d0e23613" tabindex="1"><span class="number">107.2.3 </span><span class="innertitle">Certificates</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.useradmin.html#d0e23651" tabindex="1"><span class="number">107.3 </span><span class="innertitle">Authorization</span></a></span><ul class="">
<li><span class="file"><a href="service.useradmin.html#d0e23815" tabindex="1"><span class="number">107.3.1 </span><span class="innertitle">The Authorization Object</span></a></span></li>
<li><span class="file"><a href="service.useradmin.html#d0e23846" tabindex="1"><span class="number">107.3.2 </span><span class="innertitle">Authorization Example</span></a></span></li>
</ul>
</li>
<li><span class="file"><a href="service.useradmin.html#d0e24144" tabindex="1"><span class="number">107.4 </span><span class="innertitle">Repository Maintenance</span></a></span></li>
<li><span class="file"><a href="service.useradmin.html#i1529238" tabindex="1"><span class="number">107.5 </span><span class="innertitle">User Admin Events</span></a></span><ul class="">