Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
Bundle-Activator: tutorial.example2b.Activator
Import-Package: tutorial.example2.service
Bundle-Name: French dictionary
Bundle-Description: A bundle that registers a French dictionary service
Bundle-Vendor: RichardApache HallFelix
Bundle-Version: 1.0.0

We specify which class implements the Bundle-Activator interface and also specify that our bundle imports a shared package using the Import-Package attribute. This import attribute will be fulfilled by the bundle in Example 2, which exports the package that this bundle is importing. The OSGi framework will automatically handle the details of resolving import packages.

...