Difference between revisions of "OSGi Concepts"
Line 26: | Line 26: | ||
* '''[http://zenit.senecac.on.ca/wiki/index.php/OSGi_Concepts_Bundles Bundles]''' - Bundles are the OSGi components made by the developers. | * '''[http://zenit.senecac.on.ca/wiki/index.php/OSGi_Concepts_Bundles Bundles]''' - Bundles are the OSGi components made by the developers. | ||
* '''Services''' - The services layer connects bundles in a dynamic way by offering a publish-find-bind model for plain old Java objects. | * '''Services''' - The services layer connects bundles in a dynamic way by offering a publish-find-bind model for plain old Java objects. | ||
− | * '''Life-Cycle''' - The API to install, start, stop, update, and uninstall bundles. | + | * '''[http://zenit.senecac.on.ca/wiki/index.php/OSGi_Concepts_Bundle_Life-Cycle Life-Cycle]''' - The API to install, start, stop, update, and uninstall bundles. |
* '''Modules''' - The layer that defines how a bundle can import and export code. | * '''Modules''' - The layer that defines how a bundle can import and export code. | ||
* '''Security''' - The layer that handles the security aspects. | * '''Security''' - The layer that handles the security aspects. | ||
* '''Execution Environment''' - Defines what methods and classes are available in a specific platform. | * '''Execution Environment''' - Defines what methods and classes are available in a specific platform. |
Revision as of 10:40, 20 January 2011
Main Page · Course Description · Course Topics · Schedule, Students, Teams · Course Resources · Course Projects
The OSGi Alliance - Open Services Gateway initiative - is an open standards organization founded in March 1999 that originally specified and continues to maintain the OSGi standard. OSGi technology seems to be remarkably difficult to those unfamiliar with it.
Definitions:
OSGi enables the development of applications from components that could be:
- reusable
- dynamically composed
- hide their implementation
- communicate their dependencies and services
- 2. Bundle is the name for a component in the OSGi Architecture.
- 2. Bundle is the name for a component in the OSGi Architecture.
(generic bundle definition - a group of things fastened together for convenient handling[3] )
OSGi Layering The following list contains a short definition of the terms:
- Bundles - Bundles are the OSGi components made by the developers.
- Services - The services layer connects bundles in a dynamic way by offering a publish-find-bind model for plain old Java objects.
- Life-Cycle - The API to install, start, stop, update, and uninstall bundles.
- Modules - The layer that defines how a bundle can import and export code.
- Security - The layer that handles the security aspects.
- Execution Environment - Defines what methods and classes are available in a specific platform.