FELIX-1221: Display the alias ID created by Karaf Features when showing the service details

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@812566 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java b/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java
index 9b9dda6..f51ed44 100644
--- a/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java
+++ b/webconsole/src/main/java/org/apache/felix/webconsole/internal/core/BundlesServlet.java
@@ -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" );