You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pd...@apache.org on 2018/10/23 21:57:13 UTC

svn commit: r1844703 - /felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/reference/dm-annotations.mdtext

Author: pderop
Date: Tue Oct 23 21:57:13 2018
New Revision: 1844703

URL: http://svn.apache.org/viewvc?rev=1844703&view=rev
Log:
fixed sample code

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=1844703&r1=1844702&r2=1844703&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 23 21:57:13 2018
@@ -1611,7 +1611,7 @@ in the following, the service properties
 (they will be overriden from the factory configuratin, if present in the config):
 
     :::java
-    @Component(factoryPid="my.factory.pid")
+    @Component(factoryPid="my.factory.pid", propagate=true)
     @ContextName(AppServletContext.NAME)
     ContextPath("/game")
     class Hello implements HelloService {