Author: pderop
Date: Tue Oct 9 15:10:21 2018
New Revision: 1843299
URL: http://svn.apache.org/viewvc?rev=1843299&view=rev
Log:
dm r12 updates
Modified:
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/reference/dm-annotations.mdtext
Modified:
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/reference/dm-annotations.mdtext
URL:
http://svn.apache.org/viewvc/felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/reference/dm-annotations.mdtext?rev=1843299&r1=1843298&r2=1843299&view=diff
==============================================================================
---
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/reference/dm-annotations.mdtext
(original)
+++
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/reference/dm-annotations.mdtext
Tue Oct 9 15:10:21 2018
@@ -1351,10 +1351,8 @@ The `scope` attribute has three enum val
- SINGLETON: it's as before: your registered service is a singleton, meaning
that the service must be
instantiated and registered once, and all using services will share the same
service instance of your component.
-
- BUNDLE: the service will be registered as a ServiceFactory, meaning an
instance of the component must be
created for each bundle using the service.
-
- PROTOTYPE: the service will be registered as a PrototypeServiceFactory,
meaning the service is registered as
a prototype scope service and an instance of the component must be created for
each distinct service requester.