FELIX-4580 : [Core R6] Support service.bundleid Service Registration property

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1614571 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java b/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java
index 7dd92e5..e539ebd 100644
--- a/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java
+++ b/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java
@@ -318,7 +318,7 @@
         // Add the framework assigned properties.
         props.put(Constants.OBJECTCLASS, m_classes);
         props.put(Constants.SERVICE_ID, m_serviceId);
-        props.put("service.bundleid", m_bundle.getBundleId()); // TODO use constants once available
+        props.put(Constants.SERVICE_BUNDLEID, m_bundle.getBundleId());
 
         // Update the service property map.
         m_propMap = props;