This file is indexed.

/usr/share/doc/libosgi-core-java/api/org/osgi/framework/Bundle.html is in libosgi-core-java-doc 4.3.0-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Sun Aug 11 05:54:53 UTC 2013 -->
<title>Bundle</title>
<meta name="date" content="2013-08-11">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="Bundle";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/osgi/framework/AllServiceListener.html" title="interface in org.osgi.framework"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/osgi/framework/BundleActivator.html" title="interface in org.osgi.framework"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/osgi/framework/Bundle.html" target="_top">Frames</a></li>
<li><a href="Bundle.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.osgi.framework</div>
<h2 title="Interface Bundle" class="title">Interface Bundle</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd>java.lang.Comparable&lt;<a href="../../../org/osgi/framework/Bundle.html" title="interface in org.osgi.framework">Bundle</a>&gt;</dd>
</dl>
<dl>
<dt>All Known Subinterfaces:</dt>
<dd><a href="../../../org/osgi/framework/launch/Framework.html" title="interface in org.osgi.framework.launch">Framework</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="strong">Bundle</span>
extends java.lang.Comparable&lt;<a href="../../../org/osgi/framework/Bundle.html" title="interface in org.osgi.framework">Bundle</a>&gt;</pre>
<div class="block">An installed bundle in the Framework.
 
 <p>
 A <code>Bundle</code> object is the access point to define the lifecycle of an
 installed bundle. Each bundle installed in the OSGi environment must have an
 associated <code>Bundle</code> object.
 
 <p>
 A bundle must have a unique identity, a <code>long</code>, chosen by the
 Framework. This identity must not change during the lifecycle of a bundle,
 even when the bundle is updated. Uninstalling and then reinstalling the
 bundle must create a new unique identity.
 
 <p>
 A bundle can be in one of six states:
 <ul>
 <li><a href="../../../org/osgi/framework/Bundle.html#UNINSTALLED"><code>UNINSTALLED</code></a>
 <li><a href="../../../org/osgi/framework/Bundle.html#INSTALLED"><code>INSTALLED</code></a>
 <li><a href="../../../org/osgi/framework/Bundle.html#RESOLVED"><code>RESOLVED</code></a>
 <li><a href="../../../org/osgi/framework/Bundle.html#STARTING"><code>STARTING</code></a>
 <li><a href="../../../org/osgi/framework/Bundle.html#STOPPING"><code>STOPPING</code></a>
 <li><a href="../../../org/osgi/framework/Bundle.html#ACTIVE"><code>ACTIVE</code></a>
 </ul>
 <p>
 Values assigned to these states have no specified ordering; they represent
 bit values that may be ORed together to determine if a bundle is in one of
 the valid states.
 
 <p>
 A bundle should only have active threads of execution when its state is one
 of <code>STARTING</code>,<code>ACTIVE</code>, or <code>STOPPING</code>. An <code>UNINSTALLED</code> bundle can not be set to another state; it is a zombie and can
 only be reached because references are kept somewhere.
 
 <p>
 The Framework is the only entity that is allowed to create <code>Bundle</code>
 objects, and these objects are only valid within the Framework that created
 them.
 
 <p>
 Bundles have a natural ordering such that if two <code>Bundle</code>s have the
 same <a href="../../../org/osgi/framework/Bundle.html#getBundleId()"><code>bundle id</code></a> they are equal. A <code>Bundle</code> is
 less than another <code>Bundle</code> if it has a lower <a href="../../../org/osgi/framework/Bundle.html#getBundleId()"><code>bundle id</code></a> and is greater if it has a higher bundle id.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#ACTIVE">ACTIVE</a></strong></code>
<div class="block">The bundle is now running.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#INSTALLED">INSTALLED</a></strong></code>
<div class="block">The bundle is installed but not yet resolved.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#RESOLVED">RESOLVED</a></strong></code>
<div class="block">The bundle is resolved and is able to be started.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#SIGNERS_ALL">SIGNERS_ALL</a></strong></code>
<div class="block">Request that all certificates used to sign the bundle be returned.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#SIGNERS_TRUSTED">SIGNERS_TRUSTED</a></strong></code>
<div class="block">Request that only certificates used to sign the bundle that are trusted
 by the framework be returned.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY">START_ACTIVATION_POLICY</a></strong></code>
<div class="block">The bundle start operation must activate the bundle according to the
 bundle's declared <a href="../../../org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY"><code>activation
 policy</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#START_TRANSIENT">START_TRANSIENT</a></strong></code>
<div class="block">The bundle start operation is transient and the persistent autostart
 setting of the bundle is not modified.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#STARTING">STARTING</a></strong></code>
<div class="block">The bundle is in the process of starting.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT">STOP_TRANSIENT</a></strong></code>
<div class="block">The bundle stop is transient and the persistent autostart setting of the
 bundle is not modified.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#STOPPING">STOPPING</a></strong></code>
<div class="block">The bundle is in the process of stopping.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#UNINSTALLED">UNINSTALLED</a></strong></code>
<div class="block">The bundle is uninstalled and may not be used.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&lt;A&gt;&nbsp;A</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#adapt(java.lang.Class)">adapt</a></strong>(java.lang.Class&lt;A&gt;&nbsp;type)</code>
<div class="block">Adapt this bundle to the specified type.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Enumeration&lt;java.net.URL&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#findEntries(java.lang.String, java.lang.String, boolean)">findEntries</a></strong>(java.lang.String&nbsp;path,
           java.lang.String&nbsp;filePattern,
           boolean&nbsp;recurse)</code>
<div class="block">Returns entries in this bundle and its attached fragments.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework">BundleContext</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getBundleContext()">getBundleContext</a></strong>()</code>
<div class="block">Returns this bundle's <a href="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework"><code>BundleContext</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getBundleId()">getBundleId</a></strong>()</code>
<div class="block">Returns this bundle's unique identifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.io.File</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getDataFile(java.lang.String)">getDataFile</a></strong>(java.lang.String&nbsp;filename)</code>
<div class="block">Creates a <code>File</code> object for a file in the persistent storage area
 provided for this bundle by the Framework.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.net.URL</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getEntry(java.lang.String)">getEntry</a></strong>(java.lang.String&nbsp;path)</code>
<div class="block">Returns a URL to the entry at the specified path in this bundle.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.Enumeration&lt;java.lang.String&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getEntryPaths(java.lang.String)">getEntryPaths</a></strong>(java.lang.String&nbsp;path)</code>
<div class="block">Returns an Enumeration of all the paths (<code>String</code> objects) to
 entries within this bundle whose longest sub-path matches the specified
 path.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Dictionary&lt;java.lang.String,java.lang.String&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getHeaders()">getHeaders</a></strong>()</code>
<div class="block">Returns this bundle's Manifest headers and values.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.Dictionary&lt;java.lang.String,java.lang.String&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getHeaders(java.lang.String)">getHeaders</a></strong>(java.lang.String&nbsp;locale)</code>
<div class="block">Returns this bundle's Manifest headers and values localized to the
 specified locale.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getLastModified()">getLastModified</a></strong>()</code>
<div class="block">Returns the time when this bundle was last modified.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getLocation()">getLocation</a></strong>()</code>
<div class="block">Returns this bundle's location identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</a>&lt;?&gt;[]</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getRegisteredServices()">getRegisteredServices</a></strong>()</code>
<div class="block">Returns this bundle's <code>ServiceReference</code> list for all services it
 has registered or <code>null</code> if this bundle has no registered services.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.net.URL</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getResource(java.lang.String)">getResource</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Find the specified resource from this bundle's class loader.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Enumeration&lt;java.net.URL&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getResources(java.lang.String)">getResources</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Find the specified resources from this bundle's class loader.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</a>&lt;?&gt;[]</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getServicesInUse()">getServicesInUse</a></strong>()</code>
<div class="block">Returns this bundle's <code>ServiceReference</code> list for all services it
 is using or returns <code>null</code> if this bundle is not using any
 services.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Map&lt;java.security.cert.X509Certificate,java.util.List&lt;java.security.cert.X509Certificate&gt;&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getSignerCertificates(int)">getSignerCertificates</a></strong>(int&nbsp;signersType)</code>
<div class="block">Return the certificates for the signers of this bundle and the
 certificate chains for those signers.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getState()">getState</a></strong>()</code>
<div class="block">Returns this bundle's current state.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getSymbolicName()">getSymbolicName</a></strong>()</code>
<div class="block">Returns the symbolic name of this bundle as specified by its <code>Bundle-SymbolicName</code> manifest header.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../org/osgi/framework/Version.html" title="class in org.osgi.framework">Version</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#getVersion()">getVersion</a></strong>()</code>
<div class="block">Returns the version of this bundle as specified by its <code>Bundle-Version</code> manifest header.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#hasPermission(java.lang.Object)">hasPermission</a></strong>(java.lang.Object&nbsp;permission)</code>
<div class="block">Determines if this bundle has the specified permissions.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.Class&lt;?&gt;</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#loadClass(java.lang.String)">loadClass</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Loads the specified class using this bundle's class loader.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#start()">start</a></strong>()</code>
<div class="block">Starts this bundle with no options.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#start(int)">start</a></strong>(int&nbsp;options)</code>
<div class="block">Starts this bundle.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#stop()">stop</a></strong>()</code>
<div class="block">Stops this bundle with no options.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#stop(int)">stop</a></strong>(int&nbsp;options)</code>
<div class="block">Stops this bundle.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#uninstall()">uninstall</a></strong>()</code>
<div class="block">Uninstalls this bundle.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#update()">update</a></strong>()</code>
<div class="block">Updates this bundle.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/osgi/framework/Bundle.html#update(java.io.InputStream)">update</a></strong>(java.io.InputStream&nbsp;input)</code>
<div class="block">Updates this bundle from an <code>InputStream</code>.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Comparable">
<!--   -->
</a>
<h3>Methods inherited from interface&nbsp;java.lang.Comparable</h3>
<code>compareTo</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="UNINSTALLED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UNINSTALLED</h4>
<pre>static final&nbsp;int UNINSTALLED</pre>
<div class="block">The bundle is uninstalled and may not be used.
 
 <p>
 The <code>UNINSTALLED</code> state is only visible after a bundle is
 uninstalled; the bundle is in an unusable state but references to the
 <code>Bundle</code> object may still be available and used for introspection.
 <p>
 The value of <code>UNINSTALLED</code> is 0x00000001.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.osgi.framework.Bundle.UNINSTALLED">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="INSTALLED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INSTALLED</h4>
<pre>static final&nbsp;int INSTALLED</pre>
<div class="block">The bundle is installed but not yet resolved.
 
 <p>
 A bundle is in the <code>INSTALLED</code> state when it has been installed in
 the Framework but is not or cannot be resolved.
 <p>
 This state is visible if the bundle's code dependencies are not resolved.
 The Framework may attempt to resolve an <code>INSTALLED</code> bundle's code
 dependencies and move the bundle to the <code>RESOLVED</code> state.
 <p>
 The value of <code>INSTALLED</code> is 0x00000002.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.osgi.framework.Bundle.INSTALLED">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="RESOLVED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RESOLVED</h4>
<pre>static final&nbsp;int RESOLVED</pre>
<div class="block">The bundle is resolved and is able to be started.
 
 <p>
 A bundle is in the <code>RESOLVED</code> state when the Framework has
 successfully resolved the bundle's code dependencies. These dependencies
 include:
 <ul>
 <li>The bundle's class path from its <a href="../../../org/osgi/framework/Constants.html#BUNDLE_CLASSPATH"><code>Constants.BUNDLE_CLASSPATH</code></a>
 Manifest header.
 <li>The bundle's package dependencies from its
 <a href="../../../org/osgi/framework/Constants.html#EXPORT_PACKAGE"><code>Constants.EXPORT_PACKAGE</code></a> and <a href="../../../org/osgi/framework/Constants.html#IMPORT_PACKAGE"><code>Constants.IMPORT_PACKAGE</code></a>
 Manifest headers.
 <li>The bundle's required bundle dependencies from its
 <a href="../../../org/osgi/framework/Constants.html#REQUIRE_BUNDLE"><code>Constants.REQUIRE_BUNDLE</code></a> Manifest header.
 <li>A fragment bundle's host dependency from its
 <a href="../../../org/osgi/framework/Constants.html#FRAGMENT_HOST"><code>Constants.FRAGMENT_HOST</code></a> Manifest header.
 </ul>
 <p>
 Note that the bundle is not active yet. A bundle must be put in the
 <code>RESOLVED</code> state before it can be started. The Framework may
 attempt to resolve a bundle at any time.
 <p>
 The value of <code>RESOLVED</code> is 0x00000004.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.osgi.framework.Bundle.RESOLVED">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STARTING">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STARTING</h4>
<pre>static final&nbsp;int STARTING</pre>
<div class="block">The bundle is in the process of starting.
 
 <p>
 A bundle is in the <code>STARTING</code> state when its <a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start</code></a> method is active. A bundle must be in this state when the bundle's
 <a href="../../../org/osgi/framework/BundleActivator.html#start(org.osgi.framework.BundleContext)"><code>BundleActivator.start(org.osgi.framework.BundleContext)</code></a> is called. If the <code>BundleActivator.start</code> method completes without exception, then the
 bundle has successfully started and must move to the <code>ACTIVE</code>
 state.
 <p>
 If the bundle has a <a href="../../../org/osgi/framework/Constants.html#ACTIVATION_LAZY"><code>lazy activation
 policy</code></a>, then the bundle may remain in this state for some time until the
 activation is triggered.
 <p>
 The value of <code>STARTING</code> is 0x00000008.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.osgi.framework.Bundle.STARTING">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STOPPING">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STOPPING</h4>
<pre>static final&nbsp;int STOPPING</pre>
<div class="block">The bundle is in the process of stopping.
 
 <p>
 A bundle is in the <code>STOPPING</code> state when its <a href="../../../org/osgi/framework/Bundle.html#stop(int)"><code>stop</code></a> method is active. A bundle must be in this state when the bundle's
 <a href="../../../org/osgi/framework/BundleActivator.html#stop(org.osgi.framework.BundleContext)"><code>BundleActivator.stop(org.osgi.framework.BundleContext)</code></a> method is called. When the <code>BundleActivator.stop</code> method completes the bundle is stopped and must
 move to the <code>RESOLVED</code> state.
 <p>
 The value of <code>STOPPING</code> is 0x00000010.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.osgi.framework.Bundle.STOPPING">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ACTIVE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ACTIVE</h4>
<pre>static final&nbsp;int ACTIVE</pre>
<div class="block">The bundle is now running.
 
 <p>
 A bundle is in the <code>ACTIVE</code> state when it has been successfully
 started and activated.
 <p>
 The value of <code>ACTIVE</code> is 0x00000020.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.osgi.framework.Bundle.ACTIVE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="START_TRANSIENT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>START_TRANSIENT</h4>
<pre>static final&nbsp;int START_TRANSIENT</pre>
<div class="block">The bundle start operation is transient and the persistent autostart
 setting of the bundle is not modified.
 
 <p>
 This bit may be set when calling <a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start(int)</code></a> to notify the
 framework that the autostart setting of the bundle must not be modified.
 If this bit is not set, then the autostart setting of the bundle is
 modified.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start(int)</code></a>, 
<a href="../../../constant-values.html#org.osgi.framework.Bundle.START_TRANSIENT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="START_ACTIVATION_POLICY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>START_ACTIVATION_POLICY</h4>
<pre>static final&nbsp;int START_ACTIVATION_POLICY</pre>
<div class="block">The bundle start operation must activate the bundle according to the
 bundle's declared <a href="../../../org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY"><code>activation
 policy</code></a>.
 
 <p>
 This bit may be set when calling <a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start(int)</code></a> to notify the
 framework that the bundle must be activated using the bundle's declared
 activation policy.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY"><code>Constants.BUNDLE_ACTIVATIONPOLICY</code></a>, 
<a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start(int)</code></a>, 
<a href="../../../constant-values.html#org.osgi.framework.Bundle.START_ACTIVATION_POLICY">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STOP_TRANSIENT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STOP_TRANSIENT</h4>
<pre>static final&nbsp;int STOP_TRANSIENT</pre>
<div class="block">The bundle stop is transient and the persistent autostart setting of the
 bundle is not modified.
 
 <p>
 This bit may be set when calling <a href="../../../org/osgi/framework/Bundle.html#stop(int)"><code>stop(int)</code></a> to notify the
 framework that the autostart setting of the bundle must not be modified.
 If this bit is not set, then the autostart setting of the bundle is
 modified.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#stop(int)"><code>stop(int)</code></a>, 
<a href="../../../constant-values.html#org.osgi.framework.Bundle.STOP_TRANSIENT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SIGNERS_ALL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SIGNERS_ALL</h4>
<pre>static final&nbsp;int SIGNERS_ALL</pre>
<div class="block">Request that all certificates used to sign the bundle be returned.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#getSignerCertificates(int)"><code>getSignerCertificates(int)</code></a>, 
<a href="../../../constant-values.html#org.osgi.framework.Bundle.SIGNERS_ALL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SIGNERS_TRUSTED">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>SIGNERS_TRUSTED</h4>
<pre>static final&nbsp;int SIGNERS_TRUSTED</pre>
<div class="block">Request that only certificates used to sign the bundle that are trusted
 by the framework be returned.</div>
<dl><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#getSignerCertificates(int)"><code>getSignerCertificates(int)</code></a>, 
<a href="../../../constant-values.html#org.osgi.framework.Bundle.SIGNERS_TRUSTED">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="getState()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getState</h4>
<pre>int&nbsp;getState()</pre>
<div class="block">Returns this bundle's current state.
 
 <p>
 A bundle can be in only one state at any time.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>An element of <code>UNINSTALLED</code>,<code>INSTALLED</code>,
         <code>RESOLVED</code>, <code>STARTING</code>, <code>STOPPING</code>,
         <code>ACTIVE</code>.</dd></dl>
</li>
</ul>
<a name="start(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>start</h4>
<pre>void&nbsp;start(int&nbsp;options)
           throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Starts this bundle.
 
 <p>
 If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 <p>
 If the current start level is less than this bundle's start level:
 <ul>
 <li>If the <a href="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><code>START_TRANSIENT</code></a> option is set, then a
 <code>BundleException</code> is thrown indicating this bundle cannot be
 started due to the Framework's current start level.
 
 <li>Otherwise, the Framework must set this bundle's persistent autostart
 setting to <em>Started with declared activation</em> if the
 <a href="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><code>START_ACTIVATION_POLICY</code></a> option is set or
 <em>Started with eager activation</em> if not set.
 </ul>
 <p>
 When the Framework's current start level becomes equal to or more than
 this bundle's start level, this bundle will be started.
 <p>
 Otherwise, the following steps are required to start this bundle:
 <ol>
 <li>If this bundle is in the process of being activated or deactivated
 then this method must wait for activation or deactivation to complete
 before continuing. If this does not occur in a reasonable time, a
 <code>BundleException</code> is thrown to indicate this bundle was unable to
 be started.
 
 <li>If this bundle's state is <code>ACTIVE</code> then this method returns
 immediately.
 
 <li>If the <a href="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><code>START_TRANSIENT</code></a> option is not set then set this
 bundle's autostart setting to <em>Started with declared activation</em>
 if the <a href="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><code>START_ACTIVATION_POLICY</code></a> option is set or
 <em>Started with eager activation</em> if not set. When the Framework is
 restarted and this bundle's autostart setting is not <em>Stopped</em>,
 this bundle must be automatically started.
 
 <li>If this bundle's state is not <code>RESOLVED</code>, an attempt is made to
 resolve this bundle. If the Framework cannot resolve this bundle, a
 <code>BundleException</code> is thrown.
 
 <li>If the <a href="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><code>START_ACTIVATION_POLICY</code></a> option is set and this
 bundle's declared activation policy is <a href="../../../org/osgi/framework/Constants.html#ACTIVATION_LAZY"><code>lazy</code></a> then:
 <ul>
 <li>If this bundle's state is <code>STARTING</code> then this method returns
 immediately.
 <li>This bundle's state is set to <code>STARTING</code>.
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#LAZY_ACTIVATION"><code>BundleEvent.LAZY_ACTIVATION</code></a> is fired.
 <li>This method returns immediately and the remaining steps will be
 followed when this bundle's activation is later triggered.
 </ul>
 <i></i>
 <li>This bundle's state is set to <code>STARTING</code>.
 
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#STARTING"><code>BundleEvent.STARTING</code></a> is fired.
 
 <li>The <a href="../../../org/osgi/framework/BundleActivator.html#start(org.osgi.framework.BundleContext)"><code>BundleActivator.start(org.osgi.framework.BundleContext)</code></a> method of this bundle's
 <code>BundleActivator</code>, if one is specified, is called. If the
 <code>BundleActivator</code> is invalid or throws an exception then:
 <ul>
 <li>This bundle's state is set to <code>STOPPING</code>.
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#STOPPING"><code>BundleEvent.STOPPING</code></a> is fired.
 <li>Any services registered by this bundle must be unregistered.
 <li>Any services used by this bundle must be released.
 <li>Any listeners registered by this bundle must be removed.
 <li>This bundle's state is set to <code>RESOLVED</code>.
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#STOPPED"><code>BundleEvent.STOPPED</code></a> is fired.
 <li>A <code>BundleException</code> is then thrown.
 </ul>
 <i></i>
 <li>If this bundle's state is <code>UNINSTALLED</code>, because this bundle
 was uninstalled while the <code>BundleActivator.start</code> method was
 running, a <code>BundleException</code> is thrown.
 
 <li>This bundle's state is set to <code>ACTIVE</code>.
 
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#STARTED"><code>BundleEvent.STARTED</code></a> is fired.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>
 &#x007D; or &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>,
 <code>STARTING</code> &#x007D; if this bundle has a lazy activation policy.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li>Bundle autostart setting is modified unless the
 <a href="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><code>START_TRANSIENT</code></a> option was set.
 <li><code>getState()</code> in &#x007B; <code>ACTIVE</code> &#x007D; unless the
 lazy activation policy was used.
 <li><code>BundleActivator.start()</code> has been called and did not throw an
 exception unless the lazy activation policy was used.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li>Depending on when the exception occurred, bundle autostart setting is
 modified unless the <a href="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><code>START_TRANSIENT</code></a> option was set.
 <li><code>getState()</code> not in &#x007B; <code>STARTING</code>, <code>ACTIVE</code>
 &#x007D;.
 </ul></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>options</code> - The options for starting this bundle. See
        <a href="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><code>START_TRANSIENT</code></a> and <a href="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><code>START_ACTIVATION_POLICY</code></a>. The
        Framework must ignore unrecognized options.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - If this bundle could not be started.
         BundleException types thrown by this method include:
         <a href="../../../org/osgi/framework/BundleException.html#START_TRANSIENT_ERROR"><code>BundleException.START_TRANSIENT_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><code>BundleException.NATIVECODE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><code>BundleException.RESOLVE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a>, and
         <a href="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><code>BundleException.ACTIVATOR_ERROR</code></a>.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd></dl>
</li>
</ul>
<a name="start()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>start</h4>
<pre>void&nbsp;start()
           throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Starts this bundle with no options.
 
 <p>
 This method performs the same function as calling <code>start(0)</code>.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - If this bundle could not be started.
         BundleException types thrown by this method include:
         <a href="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><code>BundleException.NATIVECODE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><code>BundleException.RESOLVE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a>, and
         <a href="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><code>BundleException.ACTIVATOR_ERROR</code></a>.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start(int)</code></a></dd></dl>
</li>
</ul>
<a name="stop(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stop</h4>
<pre>void&nbsp;stop(int&nbsp;options)
          throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Stops this bundle.
 
 <p>
 The following steps are required to stop a bundle:
 <ol>
 <li>If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 
 <li>If this bundle is in the process of being activated or deactivated
 then this method must wait for activation or deactivation to complete
 before continuing. If this does not occur in a reasonable time, a
 <code>BundleException</code> is thrown to indicate this bundle was unable to
 be stopped.
 <li>If the <a href="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><code>STOP_TRANSIENT</code></a> option is not set then then set this
 bundle's persistent autostart setting to to <em>Stopped</em>. When the
 Framework is restarted and this bundle's autostart setting is
 <em>Stopped</em>, this bundle must not be automatically started.
 
 <li>If this bundle's state is not <code>STARTING</code> or <code>ACTIVE</code> then
 this method returns immediately.
 
 <li>This bundle's state is set to <code>STOPPING</code>.
 
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#STOPPING"><code>BundleEvent.STOPPING</code></a> is fired.
 
 <li>If this bundle's state was <code>ACTIVE</code> prior to setting the state
 to <code>STOPPING</code>, the <a href="../../../org/osgi/framework/BundleActivator.html#stop(org.osgi.framework.BundleContext)"><code>BundleActivator.stop(org.osgi.framework.BundleContext)</code></a> method of this
 bundle's <code>BundleActivator</code>, if one is specified, is called. If that
 method throws an exception, this method must continue to stop this bundle
 and a <code>BundleException</code> must be thrown after completion of the
 remaining steps.
 
 <li>Any services registered by this bundle must be unregistered.
 <li>Any services used by this bundle must be released.
 <li>Any listeners registered by this bundle must be removed.
 
 <li>If this bundle's state is <code>UNINSTALLED</code>, because this bundle
 was uninstalled while the <code>BundleActivator.stop</code> method was
 running, a <code>BundleException</code> must be thrown.
 
 <li>This bundle's state is set to <code>RESOLVED</code>.
 
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#STOPPED"><code>BundleEvent.STOPPED</code></a> is fired.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>ACTIVE</code> &#x007D;.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li>Bundle autostart setting is modified unless the
 <a href="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><code>STOP_TRANSIENT</code></a> option was set.
 <li><code>getState()</code> not in &#x007B; <code>ACTIVE</code>, <code>STOPPING</code>
 &#x007D;.
 <li><code>BundleActivator.stop</code> has been called and did not throw an
 exception.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li>Bundle autostart setting is modified unless the
 <a href="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><code>STOP_TRANSIENT</code></a> option was set.
 </ul></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>options</code> - The options for stopping this bundle. See
        <a href="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><code>STOP_TRANSIENT</code></a>. The Framework must ignore unrecognized
        options.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - BundleException types thrown by this method
         include: <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a> and
         <a href="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><code>BundleException.ACTIVATOR_ERROR</code></a>.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd></dl>
</li>
</ul>
<a name="stop()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stop</h4>
<pre>void&nbsp;stop()
          throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Stops this bundle with no options.
 
 <p>
 This method performs the same function as calling <code>stop(0)</code>.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - BundleException types thrown by this method
         include: <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a> and
         <a href="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><code>BundleException.ACTIVATOR_ERROR</code></a>.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#start(int)"><code>start(int)</code></a></dd></dl>
</li>
</ul>
<a name="update(java.io.InputStream)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>update</h4>
<pre>void&nbsp;update(java.io.InputStream&nbsp;input)
            throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Updates this bundle from an <code>InputStream</code>.
 
 <p>
 If the specified <code>InputStream</code> is <code>null</code>, the Framework must
 create the <code>InputStream</code> from which to read the updated bundle by
 interpreting, in an implementation dependent manner, this bundle's
 <a href="../../../org/osgi/framework/Constants.html#BUNDLE_UPDATELOCATION"><code>Bundle-UpdateLocation</code></a> Manifest
 header, if present, or this bundle's original location.
 
 <p>
 If this bundle's state is <code>ACTIVE</code>, it must be stopped before the
 update and started after the update successfully completes.
 
 <p>
 If this bundle has exported any packages that are imported by another
 bundle, these packages must remain exported until the
 <a href="../../../org/osgi/framework/wiring/FrameworkWiring.html#refreshBundles(java.util.Collection, org.osgi.framework.FrameworkListener...)"><code>FrameworkWiring.refreshBundles</code></a> method has been has been called or the
 Framework is relaunched.
 
 <p>
 The following steps are required to update a bundle:
 <ol>
 <li>If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 
 <li>If this bundle's state is <code>ACTIVE</code>, <code>STARTING</code> or
 <code>STOPPING</code>, this bundle is stopped as described in the
 <code>Bundle.stop</code> method. If <code>Bundle.stop</code> throws an exception,
 the exception is rethrown terminating the update.
 
 <li>The updated version of this bundle is read from the input stream and
 installed. If the Framework is unable to install the updated version of
 this bundle, the original version of this bundle must be restored and a
 <code>BundleException</code> must be thrown after completion of the remaining
 steps.
 
 <li>This bundle's state is set to <code>INSTALLED</code>.
 
 <li>If the updated version of this bundle was successfully installed, a
 bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#UPDATED"><code>BundleEvent.UPDATED</code></a> is fired.
 
 <li>If this bundle's state was originally <code>ACTIVE</code>, the updated
 bundle is started as described in the <code>Bundle.start</code> method. If
 <code>Bundle.start</code> throws an exception, a Framework event of type
 <a href="../../../org/osgi/framework/FrameworkEvent.html#ERROR"><code>FrameworkEvent.ERROR</code></a> is fired containing the exception.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> not in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>,
 <code>ACTIVE</code> &#x007D;.
 <li>This bundle has been updated.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>,
 <code>ACTIVE</code> &#x007D;.
 <li>Original bundle is still used; no update occurred.
 </ul></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>input</code> - The <code>InputStream</code> from which to read the new bundle or
        <code>null</code> to indicate the Framework must create the input
        stream from this bundle's <a href="../../../org/osgi/framework/Constants.html#BUNDLE_UPDATELOCATION"><code>Bundle-UpdateLocation</code></a> Manifest header, if present, or this
        bundle's original location. The input stream must always be closed
        when this method completes, even if an exception is thrown.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - If this bundle could not be updated.
         BundleException types thrown by this method include:
         <a href="../../../org/osgi/framework/BundleException.html#READ_ERROR"><code>BundleException.READ_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#DUPLICATE_BUNDLE_ERROR"><code>BundleException.DUPLICATE_BUNDLE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#MANIFEST_ERROR"><code>BundleException.MANIFEST_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><code>BundleException.NATIVECODE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><code>BundleException.RESOLVE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a>, and
         <a href="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><code>BundleException.ACTIVATOR_ERROR</code></a>.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,LIFECYCLE]</code> for both the current
         bundle and the updated bundle, and the Java Runtime Environment
         supports permissions.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#stop()"><code>stop()</code></a>, 
<a href="../../../org/osgi/framework/Bundle.html#start()"><code>start()</code></a></dd></dl>
</li>
</ul>
<a name="update()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>update</h4>
<pre>void&nbsp;update()
            throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Updates this bundle.
 
 <p>
 This method performs the same function as calling
 <a href="../../../org/osgi/framework/Bundle.html#update(java.io.InputStream)"><code>update(InputStream)</code></a> with a <code>null</code> InputStream.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - If this bundle could not be updated.
         BundleException types thrown by this method include:
         <a href="../../../org/osgi/framework/BundleException.html#READ_ERROR"><code>BundleException.READ_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#DUPLICATE_BUNDLE_ERROR"><code>BundleException.DUPLICATE_BUNDLE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#MANIFEST_ERROR"><code>BundleException.MANIFEST_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><code>BundleException.NATIVECODE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><code>BundleException.RESOLVE_ERROR</code></a>,
         <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a>, and
         <a href="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><code>BundleException.ACTIVATOR_ERROR</code></a>.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,LIFECYCLE]</code> for both the current
         bundle and the updated bundle, and the Java Runtime Environment
         supports permissions.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#update(java.io.InputStream)"><code>update(InputStream)</code></a></dd></dl>
</li>
</ul>
<a name="uninstall()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>uninstall</h4>
<pre>void&nbsp;uninstall()
               throws <a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></pre>
<div class="block">Uninstalls this bundle.
 
 <p>
 This method causes the Framework to notify other bundles that this bundle
 is being uninstalled, and then puts this bundle into the
 <code>UNINSTALLED</code> state. The Framework must remove any resources
 related to this bundle that it is able to remove.
 
 <p>
 If this bundle has exported any packages, the Framework must continue to
 make these packages available to their importing bundles until the
 <a href="../../../org/osgi/framework/wiring/FrameworkWiring.html#refreshBundles(java.util.Collection, org.osgi.framework.FrameworkListener...)"><code>FrameworkWiring.refreshBundles</code></a> method has been called or the Framework
 is relaunched.
 
 <p>
 The following steps are required to uninstall a bundle:
 <ol>
 <li>If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 
 <li>If this bundle's state is <code>ACTIVE</code>, <code>STARTING</code> or
 <code>STOPPING</code>, this bundle is stopped as described in the
 <code>Bundle.stop</code> method. If <code>Bundle.stop</code> throws an exception, a
 Framework event of type <a href="../../../org/osgi/framework/FrameworkEvent.html#ERROR"><code>FrameworkEvent.ERROR</code></a> is fired containing
 the exception.
 
 <li>This bundle's state is set to <code>UNINSTALLED</code>.
 
 <li>A bundle event of type <a href="../../../org/osgi/framework/BundleEvent.html#UNINSTALLED"><code>BundleEvent.UNINSTALLED</code></a> is fired.
 
 <li>This bundle and any persistent storage area provided for this bundle
 by the Framework are removed.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> not in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 <li>This bundle has been uninstalled.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li><code>getState()</code> not in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 <li>This Bundle has not been uninstalled.
 </ul></div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</a></code> - If the uninstall failed. This can occur if
         another thread is attempting to change this bundle's state and
         does not complete in a timely manner. BundleException types
         thrown by this method include:
         <a href="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><code>BundleException.STATECHANGE_ERROR</code></a></dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled or this
         bundle tries to change its own state.</dd>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,LIFECYCLE]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#stop()"><code>stop()</code></a></dd></dl>
</li>
</ul>
<a name="getHeaders()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHeaders</h4>
<pre>java.util.Dictionary&lt;java.lang.String,java.lang.String&gt;&nbsp;getHeaders()</pre>
<div class="block">Returns this bundle's Manifest headers and values. This method returns
 all the Manifest headers and values from the main section of this
 bundle's Manifest file; that is, all lines prior to the first blank line.
 
 <p>
 Manifest header names are case-insensitive. The methods of the returned
 <code>Dictionary</code> object must operate on header names in a
 case-insensitive manner.
 
 If a Manifest header value starts with &quot;%&quot;, it must be
 localized according to the default locale. If no localization is found
 for a header value, the header value without the leading &quot;%&quot; is
 returned.
 
 <p>
 For example, the following Manifest headers and values are included if
 they are present in the Manifest file:
 
 <pre>
     Bundle-Name
     Bundle-Vendor
     Bundle-Version
     Bundle-Description
     Bundle-DocURL
     Bundle-ContactAddress
 </pre>
 
 <p>
 This method must continue to return Manifest header information while
 this bundle is in the <code>UNINSTALLED</code> state.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>An unmodifiable <code>Dictionary</code> object containing this
         bundle's Manifest headers and values.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,METADATA]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Constants.html#BUNDLE_LOCALIZATION"><code>Constants.BUNDLE_LOCALIZATION</code></a></dd></dl>
</li>
</ul>
<a name="getBundleId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBundleId</h4>
<pre>long&nbsp;getBundleId()</pre>
<div class="block">Returns this bundle's unique identifier. This bundle is assigned a unique
 identifier by the Framework when it was installed in the OSGi
 environment.
 
 <p>
 A bundle's unique identifier has the following attributes:
 <ul>
 <li>Is unique and persistent.
 <li>Is a <code>long</code>.
 <li>Its value is not reused for another bundle, even after a bundle is
 uninstalled.
 <li>Does not change while a bundle remains installed.
 <li>Does not change when a bundle is updated.
 </ul>
 
 <p>
 This method must continue to return this bundle's unique identifier while
 this bundle is in the <code>UNINSTALLED</code> state.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The unique identifier of this bundle.</dd></dl>
</li>
</ul>
<a name="getLocation()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLocation</h4>
<pre>java.lang.String&nbsp;getLocation()</pre>
<div class="block">Returns this bundle's location identifier.
 
 <p>
 The location identifier is the location passed to <code>BundleContext.installBundle</code> when a bundle is installed. The location
 identifier does not change while this bundle remains installed, even if
 this bundle is updated.
 
 <p>
 This method must continue to return this bundle's location identifier
 while this bundle is in the <code>UNINSTALLED</code> state.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The string representation of this bundle's location identifier.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,METADATA]</code>, and the Java Runtime
         Environment supports permissions.</dd></dl>
</li>
</ul>
<a name="getRegisteredServices()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRegisteredServices</h4>
<pre><a href="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</a>&lt;?&gt;[]&nbsp;getRegisteredServices()</pre>
<div class="block">Returns this bundle's <code>ServiceReference</code> list for all services it
 has registered or <code>null</code> if this bundle has no registered services.
 
 <p>
 If the Java runtime supports permissions, a <code>ServiceReference</code>
 object to a service is included in the returned list only if the caller
 has the <code>ServicePermission</code> to get the service using at least one
 of the named classes the service was registered under.
 
 <p>
 The list is valid at the time of the call to this method, however, as the
 Framework is a very dynamic environment, services can be modified or
 unregistered at anytime.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>An array of <code>ServiceReference</code> objects or <code>null</code>.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/ServiceRegistration.html" title="interface in org.osgi.framework"><code>ServiceRegistration</code></a>, 
<a href="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework"><code>ServiceReference</code></a>, 
<a href="../../../org/osgi/framework/ServicePermission.html" title="class in org.osgi.framework"><code>ServicePermission</code></a></dd></dl>
</li>
</ul>
<a name="getServicesInUse()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getServicesInUse</h4>
<pre><a href="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</a>&lt;?&gt;[]&nbsp;getServicesInUse()</pre>
<div class="block">Returns this bundle's <code>ServiceReference</code> list for all services it
 is using or returns <code>null</code> if this bundle is not using any
 services. A bundle is considered to be using a service if its use count
 for that service is greater than zero.
 
 <p>
 If the Java Runtime Environment supports permissions, a <code>ServiceReference</code> object to a service is included in the returned list
 only if the caller has the <code>ServicePermission</code> to get the service
 using at least one of the named classes the service was registered under.
 <p>
 The list is valid at the time of the call to this method, however, as the
 Framework is a very dynamic environment, services can be modified or
 unregistered at anytime.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>An array of <code>ServiceReference</code> objects or <code>null</code>.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework"><code>ServiceReference</code></a>, 
<a href="../../../org/osgi/framework/ServicePermission.html" title="class in org.osgi.framework"><code>ServicePermission</code></a></dd></dl>
</li>
</ul>
<a name="hasPermission(java.lang.Object)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasPermission</h4>
<pre>boolean&nbsp;hasPermission(java.lang.Object&nbsp;permission)</pre>
<div class="block">Determines if this bundle has the specified permissions.
 
 <p>
 If the Java Runtime Environment does not support permissions, this method
 always returns <code>true</code>.
 <p>
 <code>permission</code> is of type <code>Object</code> to avoid referencing the
 <code>java.security.Permission</code> class directly. This is to allow the
 Framework to be implemented in Java environments which do not support
 permissions.
 
 <p>
 If the Java Runtime Environment does support permissions, this bundle and
 all its resources including embedded JAR files, belong to the same
 <code>java.security.ProtectionDomain</code>; that is, they must share the same
 set of permissions.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>permission</code> - The permission to verify.</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>true</code> if this bundle has the specified permission or the
         permissions possessed by this bundle imply the specified
         permission; <code>false</code> if this bundle does not have the
         specified permission or <code>permission</code> is not an <code>instanceof</code> <code>java.security.Permission</code>.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd></dl>
</li>
</ul>
<a name="getResource(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getResource</h4>
<pre>java.net.URL&nbsp;getResource(java.lang.String&nbsp;name)</pre>
<div class="block">Find the specified resource from this bundle's class loader.
 
 This bundle's class loader is called to search for the specified
 resource. If this bundle's state is <code>INSTALLED</code>, this method must
 attempt to resolve this bundle before attempting to get the specified
 resource. If this bundle cannot be resolved, then only this bundle must
 be searched for the specified resource. Imported packages cannot be
 searched when this bundle has not been resolved. If this bundle is a
 fragment bundle then <code>null</code> is returned.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - The name of the resource. See <code>ClassLoader.getResource</code>
        for a description of the format of a resource name.</dd>
<dt><span class="strong">Returns:</span></dt><dd>A URL to the named resource, or <code>null</code> if the resource
         could not be found or if this bundle is a fragment bundle or if
         the caller does not have the appropriate <code>AdminPermission[this,RESOURCE]</code>, and the Java Runtime Environment
         supports permissions.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.1</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#getEntry(java.lang.String)"><code>getEntry(java.lang.String)</code></a>, 
<a href="../../../org/osgi/framework/Bundle.html#findEntries(java.lang.String, java.lang.String, boolean)"><code>findEntries(java.lang.String, java.lang.String, boolean)</code></a></dd></dl>
</li>
</ul>
<a name="getHeaders(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHeaders</h4>
<pre>java.util.Dictionary&lt;java.lang.String,java.lang.String&gt;&nbsp;getHeaders(java.lang.String&nbsp;locale)</pre>
<div class="block">Returns this bundle's Manifest headers and values localized to the
 specified locale.
 
 <p>
 This method performs the same function as <code>Bundle.getHeaders()</code>
 except the manifest header values are localized to the specified locale.
 
 <p>
 If a Manifest header value starts with &quot;%&quot;, it must be
 localized according to the specified locale. If a locale is specified and
 cannot be found, then the header values must be returned using the
 default locale. Localizations are searched for in the following order:
 
 <pre>
   bn + &quot;_&quot; + Ls + &quot;_&quot; + Cs + &quot;_&quot; + Vs
   bn + &quot;_&quot; + Ls + &quot;_&quot; + Cs
   bn + &quot;_&quot; + Ls
   bn + &quot;_&quot; + Ld + &quot;_&quot; + Cd + &quot;_&quot; + Vd
   bn + &quot;_&quot; + Ld + &quot;_&quot; + Cd
   bn + &quot;_&quot; + Ld
   bn
 </pre>
 
 Where <code>bn</code> is this bundle's localization basename, <code>Ls</code>,
 <code>Cs</code> and <code>Vs</code> are the specified locale (language, country,
 variant) and <code>Ld</code>, <code>Cd</code> and <code>Vd</code> are the default locale
 (language, country, variant).
 
 If <code>null</code> is specified as the locale string, the header values must
 be localized using the default locale. If the empty string (&quot;&quot;)
 is specified as the locale string, the header values must not be
 localized and the raw (unlocalized) header values, including any leading
 &quot;%&quot;, must be returned. If no localization is found for a header
 value, the header value without the leading &quot;%&quot; is returned.
 
 <p>
 This method must continue to return Manifest header information while
 this bundle is in the <code>UNINSTALLED</code> state, however the header
 values must only be available in the raw and default locale values.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>locale</code> - The locale name into which the header values are to be
        localized. If the specified locale is <code>null</code> then the locale
        returned by <code>java.util.Locale.getDefault</code> is used. If the
        specified locale is the empty string, this method will return the
        raw (unlocalized) manifest headers including any leading
        &quot;%&quot;.</dd>
<dt><span class="strong">Returns:</span></dt><dd>An unmodifiable <code>Dictionary</code> object containing this
         bundle's Manifest headers and values.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,METADATA]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/osgi/framework/Bundle.html#getHeaders()"><code>getHeaders()</code></a>, 
<a href="../../../org/osgi/framework/Constants.html#BUNDLE_LOCALIZATION"><code>Constants.BUNDLE_LOCALIZATION</code></a></dd></dl>
</li>
</ul>
<a name="getSymbolicName()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSymbolicName</h4>
<pre>java.lang.String&nbsp;getSymbolicName()</pre>
<div class="block">Returns the symbolic name of this bundle as specified by its <code>Bundle-SymbolicName</code> manifest header. The bundle symbolic name should be
 based on the reverse domain name naming convention like that used for
 java packages.
 
 <p>
 This method must continue to return this bundle's symbolic name while
 this bundle is in the <code>UNINSTALLED</code> state.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The symbolic name of this bundle or <code>null</code> if this bundle
         does not have a symbolic name.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="loadClass(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadClass</h4>
<pre>java.lang.Class&lt;?&gt;&nbsp;loadClass(java.lang.String&nbsp;name)
                             throws java.lang.ClassNotFoundException</pre>
<div class="block">Loads the specified class using this bundle's class loader.
 
 <p>
 If this bundle is a fragment bundle then this method must throw a <code>ClassNotFoundException</code>.
 
 <p>
 If this bundle's state is <code>INSTALLED</code>, this method must attempt to
 resolve this bundle before attempting to load the class.
 
 <p>
 If this bundle cannot be resolved, a Framework event of type
 <a href="../../../org/osgi/framework/FrameworkEvent.html#ERROR"><code>FrameworkEvent.ERROR</code></a> is fired containing a <code>BundleException</code> with details of the reason this bundle could not be
 resolved. This method must then throw a <code>ClassNotFoundException</code>.
 
 <p>
 If this bundle's state is <code>UNINSTALLED</code>, then an <code>IllegalStateException</code> is thrown.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - The name of the class to load.</dd>
<dt><span class="strong">Returns:</span></dt><dd>The Class object for the requested class.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.ClassNotFoundException</code> - If no such class can be found or if this
         bundle is a fragment bundle or if the caller does not have the
         appropriate <code>AdminPermission[this,CLASS]</code>, and the Java
         Runtime Environment supports permissions.</dd>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="getResources(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getResources</h4>
<pre>java.util.Enumeration&lt;java.net.URL&gt;&nbsp;getResources(java.lang.String&nbsp;name)
                                                 throws java.io.IOException</pre>
<div class="block">Find the specified resources from this bundle's class loader.
 
 This bundle's class loader is called to search for the specified
 resources. If this bundle's state is <code>INSTALLED</code>, this method must
 attempt to resolve this bundle before attempting to get the specified
 resources. If this bundle cannot be resolved, then only this bundle must
 be searched for the specified resources. Imported packages cannot be
 searched when a bundle has not been resolved. If this bundle is a
 fragment bundle then <code>null</code> is returned.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - The name of the resource. See <code>ClassLoader.getResources</code> for a description of the format of a
        resource name.</dd>
<dt><span class="strong">Returns:</span></dt><dd>An enumeration of URLs to the named resources, or <code>null</code> if
         the resource could not be found or if this bundle is a fragment
         bundle or if the caller does not have the appropriate <code>AdminPermission[this,RESOURCE]</code>, and the Java Runtime Environment
         supports permissions.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd>
<dd><code>java.io.IOException</code> - If there is an I/O error.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="getEntryPaths(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEntryPaths</h4>
<pre>java.util.Enumeration&lt;java.lang.String&gt;&nbsp;getEntryPaths(java.lang.String&nbsp;path)</pre>
<div class="block">Returns an Enumeration of all the paths (<code>String</code> objects) to
 entries within this bundle whose longest sub-path matches the specified
 path. This bundle's class loader is not used to search for entries. Only
 the contents of this bundle are searched.
 <p>
 The specified path is always relative to the root of this bundle and may
 begin with a &quot;/&quot;. A path value of &quot;/&quot; indicates the
 root of this bundle.
 <p>
 Returned paths indicating subdirectory paths end with a &quot;/&quot;.
 The returned paths are all relative to the root of this bundle and must
 not begin with &quot;/&quot;.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 Paths to directory entries will not be returned if the bundle contents do
 not contain directory entries.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>path</code> - The path name for which to return entry paths.</dd>
<dt><span class="strong">Returns:</span></dt><dd>An Enumeration of the entry paths (<code>String</code> objects) or
         <code>null</code> if no entry could be found or if the caller does not
         have the appropriate <code>AdminPermission[this,RESOURCE]</code> and
         the Java Runtime Environment supports permissions.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="getEntry(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEntry</h4>
<pre>java.net.URL&nbsp;getEntry(java.lang.String&nbsp;path)</pre>
<div class="block">Returns a URL to the entry at the specified path in this bundle. This
 bundle's class loader is not used to search for the entry. Only the
 contents of this bundle are searched for the entry.
 <p>
 The specified path is always relative to the root of this bundle and may
 begin with &quot;/&quot;. A path value of &quot;/&quot; indicates the
 root of this bundle.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>path</code> - The path name of the entry.</dd>
<dt><span class="strong">Returns:</span></dt><dd>A URL to the entry, or <code>null</code> if no entry could be found or
         if the caller does not have the appropriate <code>AdminPermission[this,RESOURCE]</code> and the Java Runtime Environment
         supports permissions.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="getLastModified()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLastModified</h4>
<pre>long&nbsp;getLastModified()</pre>
<div class="block">Returns the time when this bundle was last modified. A bundle is
 considered to be modified when it is installed, updated or uninstalled.
 
 <p>
 The time value is the number of milliseconds since January 1, 1970,
 00:00:00 GMT.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The time when this bundle was last modified.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="findEntries(java.lang.String, java.lang.String, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>findEntries</h4>
<pre>java.util.Enumeration&lt;java.net.URL&gt;&nbsp;findEntries(java.lang.String&nbsp;path,
                                              java.lang.String&nbsp;filePattern,
                                              boolean&nbsp;recurse)</pre>
<div class="block">Returns entries in this bundle and its attached fragments. This bundle's
 class loader is not used to search for entries. Only the contents of this
 bundle and its attached fragments are searched for the specified entries.
 
 If this bundle's state is <code>INSTALLED</code>, this method must attempt to
 resolve this bundle before attempting to find entries.
 
 <p>
 This method is intended to be used to obtain configuration, setup,
 localization and other information from this bundle. This method takes
 into account that the &quot;contents&quot; of this bundle can be extended
 with fragments. This &quot;bundle space&quot; is not a name space with
 unique members; the same entry name can be present multiple times. This
 method therefore returns an enumeration of URL objects. These URLs can
 come from different JARs but have the same path name. This method can
 either return only entries in the specified path or recurse into
 subdirectories returning entries in the directory tree beginning at the
 specified path. Fragments can be attached after this bundle is resolved,
 possibly changing the set of URLs returned by this method. If this bundle
 is not resolved, only the entries in the JAR file of this bundle are
 returned.
 <p>
 Examples:
 
 <pre>
 // List all XML files in the OSGI-INF directory and below
 Enumeration e = b.findEntries(&quot;OSGI-INF&quot;, &quot;*.xml&quot;, true);
 
 // Find a specific localization file
 Enumeration e = b
                .findEntries(&quot;OSGI-INF/l10n&quot;, &quot;bundle_nl_DU.properties&quot;, false);
 if (e.hasMoreElements())
        return (URL) e.nextElement();
 </pre>
 
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>path</code> - The path name in which to look. The path is always relative
        to the root of this bundle and may begin with &quot;/&quot;. A
        path value of &quot;/&quot; indicates the root of this bundle.</dd><dd><code>filePattern</code> - The file name pattern for selecting entries in the
        specified path. The pattern is only matched against the last
        element of the entry path. If the entry is a directory then the
        trailing &quot;/&quot; is not used for pattern matching. Substring
        matching is supported, as specified in the Filter specification,
        using the wildcard character (&quot;*&quot;). If null is
        specified, this is equivalent to &quot;*&quot; and matches all
        files.</dd><dd><code>recurse</code> - If <code>true</code>, recurse into subdirectories. Otherwise
        only return entries from the specified path.</dd>
<dt><span class="strong">Returns:</span></dt><dd>An enumeration of URL objects for each matching entry, or
         <code>null</code> if no matching entry could not be found or if the
         caller does not have the appropriate
         <code>AdminPermission[this,RESOURCE]</code>, and the Java Runtime
         Environment supports permissions. The URLs are sorted such that
         entries from this bundle are returned first followed by the
         entries from attached fragments in attachment order. If this
         bundle is a fragment, then only matching entries in this fragment
         are returned.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.3</dd></dl>
</li>
</ul>
<a name="getBundleContext()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBundleContext</h4>
<pre><a href="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework">BundleContext</a>&nbsp;getBundleContext()</pre>
<div class="block">Returns this bundle's <a href="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework"><code>BundleContext</code></a>. The returned <code>BundleContext</code> can be used by the caller to act on behalf of this bundle.
 
 <p>
 If this bundle is not in the <a href="../../../org/osgi/framework/Bundle.html#STARTING"><code>STARTING</code></a>, <a href="../../../org/osgi/framework/Bundle.html#ACTIVE"><code>ACTIVE</code></a>, or
 <a href="../../../org/osgi/framework/Bundle.html#STOPPING"><code>STOPPING</code></a> states or this bundle is a fragment bundle, then this
 bundle has no valid <code>BundleContext</code>. This method will return
 <code>null</code> if this bundle has no valid <code>BundleContext</code>.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>A <code>BundleContext</code> for this bundle or <code>null</code> if this
         bundle has no valid <code>BundleContext</code>.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdminPermission[this,CONTEXT]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.4</dd></dl>
</li>
</ul>
<a name="getSignerCertificates(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSignerCertificates</h4>
<pre>java.util.Map&lt;java.security.cert.X509Certificate,java.util.List&lt;java.security.cert.X509Certificate&gt;&gt;&nbsp;getSignerCertificates(int&nbsp;signersType)</pre>
<div class="block">Return the certificates for the signers of this bundle and the
 certificate chains for those signers.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>signersType</code> - If <a href="../../../org/osgi/framework/Bundle.html#SIGNERS_ALL"><code>SIGNERS_ALL</code></a> is specified, then information
        on all signers of this bundle is returned. If
        <a href="../../../org/osgi/framework/Bundle.html#SIGNERS_TRUSTED"><code>SIGNERS_TRUSTED</code></a> is specified, then only information on
        the signers of this bundle trusted by the framework is returned.</dd>
<dt><span class="strong">Returns:</span></dt><dd>The <code>X509Certificate</code>s for the signers of this bundle and
         the <code>X509Certificate</code> chains for those signers. The keys of
         the <code>Map</code> are the <code>X509Certificate</code>s of the signers
         of this bundle. The value for a key is a <code>List</code> containing
         the <code>X509Certificate</code> chain for the signer. The first item
         in the <code>List</code> is the signer's <code>X509Certificate</code> which
         is then followed by the rest of the <code>X509Certificate</code>
         chain. The returned <code>Map</code> will be empty if there are no
         signers. The returned <code>Map</code> is the property of the caller
         who is free to modify it.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - If the specified <code>signersType</code> is
         not <a href="../../../org/osgi/framework/Bundle.html#SIGNERS_ALL"><code>SIGNERS_ALL</code></a> or <a href="../../../org/osgi/framework/Bundle.html#SIGNERS_TRUSTED"><code>SIGNERS_TRUSTED</code></a>.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd></dl>
</li>
</ul>
<a name="getVersion()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getVersion</h4>
<pre><a href="../../../org/osgi/framework/Version.html" title="class in org.osgi.framework">Version</a>&nbsp;getVersion()</pre>
<div class="block">Returns the version of this bundle as specified by its <code>Bundle-Version</code> manifest header. If this bundle does not have a specified
 version then <a href="../../../org/osgi/framework/Version.html#emptyVersion"><code>Version.emptyVersion</code></a> is returned.
 
 <p>
 This method must continue to return this bundle's version while this
 bundle is in the <code>UNINSTALLED</code> state.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The version of this bundle.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.5</dd></dl>
</li>
</ul>
<a name="adapt(java.lang.Class)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>adapt</h4>
<pre>&lt;A&gt;&nbsp;A&nbsp;adapt(java.lang.Class&lt;A&gt;&nbsp;type)</pre>
<div class="block">Adapt this bundle to the specified type.
 
 <p>
 Adapting this bundle to the specified type may require certain checks,
 including security checks, to succeed. If a check does not succeed, then
 this bundle cannot be adapted and <code>null</code> is returned.</div>
<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>A</code> - The type to which this bundle is to be adapted.</dd><dt><span class="strong">Parameters:</span></dt><dd><code>type</code> - Class object for the type to which this bundle is to be
        adapted.</dd>
<dt><span class="strong">Returns:</span></dt><dd>The object, of the specified type, to which this bundle has been
         adapted or <code>null</code> if this bundle cannot be adapted to the
         specified type.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.SecurityException</code> - If the caller does not have the appropriate
         <code>AdaptPermission[type,this,ADAPT]</code>, and the Java Runtime
         Environment supports permissions.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.6</dd></dl>
</li>
</ul>
<a name="getDataFile(java.lang.String)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getDataFile</h4>
<pre>java.io.File&nbsp;getDataFile(java.lang.String&nbsp;filename)</pre>
<div class="block">Creates a <code>File</code> object for a file in the persistent storage area
 provided for this bundle by the Framework. This method will return
 <code>null</code> if the platform does not have file system support or this
 bundle is a fragment bundle.
 
 <p>
 A <code>File</code> object for the base directory of the persistent storage
 area provided for this bundle by the Framework can be obtained by calling
 this method with an empty string as <code>filename</code>.
 
 <p>
 If the Java Runtime Environment supports permissions, the Framework will
 ensure that this bundle has the <code>java.io.FilePermission</code> with
 actions <code>read</code>,<code>write</code>,<code>delete</code> for all files
 (recursively) in the persistent storage area provided for this bundle.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>filename</code> - A relative name to the file to be accessed.</dd>
<dt><span class="strong">Returns:</span></dt><dd>A <code>File</code> object that represents the requested file or
         <code>null</code> if the platform does not have file system support or
         this bundle is a fragment bundle.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalStateException</code> - If this bundle has been uninstalled.</dd><dt><span class="strong">Since:</span></dt>
  <dd>1.6</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/osgi/framework/AllServiceListener.html" title="interface in org.osgi.framework"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/osgi/framework/BundleActivator.html" title="interface in org.osgi.framework"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/osgi/framework/Bundle.html" target="_top">Frames</a></li>
<li><a href="Bundle.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>