Return-Path: Delivered-To: apmail-directory-dev-archive@www.apache.org Received: (qmail 2674 invoked from network); 15 Feb 2009 14:07:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Feb 2009 14:07:44 -0000 Received: (qmail 97246 invoked by uid 500); 15 Feb 2009 14:07:44 -0000 Delivered-To: apmail-directory-dev-archive@directory.apache.org Received: (qmail 97215 invoked by uid 500); 15 Feb 2009 14:07:44 -0000 Mailing-List: contact dev-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache Directory Developers List" Delivered-To: mailing list dev@directory.apache.org Received: (qmail 97206 invoked by uid 99); 15 Feb 2009 14:07:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Feb 2009 06:07:43 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Feb 2009 14:07:42 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E7473234C4BC for ; Sun, 15 Feb 2009 06:06:59 -0800 (PST) Message-ID: <312123877.1234706819945.JavaMail.jira@brutus> Date: Sun, 15 Feb 2009 06:06:59 -0800 (PST) From: "Emmanuel Lecharny (JIRA)" To: dev@directory.apache.org Subject: [jira] Closed: (DIRSERVER-909) getPrimaryName() doesn't fallback to the bootstrap In-Reply-To: <23934774.1177269195428.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DIRSERVER-909?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Emmanuel Lecharny closed DIRSERVER-909. --------------------------------------- closed > getPrimaryName() doesn't fallback to the bootstrap > -------------------------------------------------- > > Key: DIRSERVER-909 > URL: https://issues.apache.org/jira/browse/DIRSERVER-909 > Project: Directory ApacheDS > Issue Type: Bug > Affects Versions: 1.0.1 > Environment: Linux, Java 6 > Reporter: Mark Swanson > Assignee: Mark Swanson > Priority: Minor > Fix For: 1.0.2 > > > The GlobalOidRegistry doesn't fallback to the bootstrap registry for the method getPrimaryName(String oid). > The fix (about line 428) works for me: > public String getPrimaryName( String oid ) throws NamingException > { > Object value = byOid.get( oid ); > if ( null == value ) > { > // MS - default to the bootstrap registry > value = bootstrap.getPrimaryName(oid); > } > if ( null == value ) > This fix applies to 1.0.1 only. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.