You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by gn...@apache.org on 2009/09/08 17:52:39 UTC

svn commit: r812566 - /felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java

Author: gnodet
Date: Tue Sep  8 15:52:39 2009
New Revision: 812566

URL: http://svn.apache.org/viewvc?rev=812566&view=rev
Log:
FELIX-1221: Display the alias ID created by Karaf Features when showing the service details

Modified:
    felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java

Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java?rev=812566&r1=812565&r2=812566&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java (original)
+++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java Tue Sep  8 15:52:39 2009
@@ -835,7 +835,8 @@
             JSONArray val = new JSONArray();
 
             appendProperty( val, refs[i], Constants.OBJECTCLASS, "Types" );
-            appendProperty( val, refs[i], Constants.SERVICE_PID, "PID" );
+            appendProperty( val, refs[i], Constants.SERVICE_PID, "Service PID" );
+            appendProperty( val, refs[i], "org.apache.felix.karaf.features.configKey", "Feature PID" );
             appendProperty( val, refs[i], ConfigurationAdmin.SERVICE_FACTORYPID, "Factory PID" );
             appendProperty( val, refs[i], ComponentConstants.COMPONENT_NAME, "Component Name" );
             appendProperty( val, refs[i], ComponentConstants.COMPONENT_ID, "Component ID" );