Return-Path: X-Original-To: apmail-felix-commits-archive@www.apache.org Delivered-To: apmail-felix-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 39F3D11FD8 for ; Wed, 30 Jul 2014 07:26:00 +0000 (UTC) Received: (qmail 90069 invoked by uid 500); 30 Jul 2014 07:26:00 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 90043 invoked by uid 500); 30 Jul 2014 07:26:00 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 90034 invoked by uid 99); 30 Jul 2014 07:25:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jul 2014 07:25:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jul 2014 07:26:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5A6262388EAF; Wed, 30 Jul 2014 07:25:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1614571 - /felix/trunk/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java Date: Wed, 30 Jul 2014 07:25:36 -0000 To: commits@felix.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140730072536.5A6262388EAF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cziegeler Date: Wed Jul 30 07:25:35 2014 New Revision: 1614571 URL: http://svn.apache.org/r1614571 Log: FELIX-4580 : [Core R6] Support service.bundleid Service Registration property Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java?rev=1614571&r1=1614570&r2=1614571&view=diff ============================================================================== --- felix/trunk/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java (original) +++ felix/trunk/framework/src/main/java/org/apache/felix/framework/ServiceRegistrationImpl.java Wed Jul 30 07:25:35 2014 @@ -318,7 +318,7 @@ class ServiceRegistrationImpl implements // 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;