Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 20651 invoked from network); 5 Aug 2005 13:56:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Aug 2005 13:56:45 -0000 Received: (qmail 38382 invoked by uid 500); 5 Aug 2005 13:56:44 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 38319 invoked by uid 500); 5 Aug 2005 13:56:43 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 38306 invoked by uid 99); 5 Aug 2005 13:56:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Aug 2005 06:56:43 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 05 Aug 2005 06:56:34 -0700 Received: (qmail 20493 invoked by uid 65534); 5 Aug 2005 13:56:42 -0000 Message-ID: <20050805135642.20491.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r230471 - /directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/partition/DefaultContextPartitionNexus.java Date: Fri, 05 Aug 2005 13:56:41 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: akarasulu Date: Fri Aug 5 06:56:37 2005 New Revision: 230471 URL: http://svn.apache.org/viewcvs?rev=230471&view=rev Log: added vendorVersion to rootdse Modified: directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/partition/DefaultContextPartitionNexus.java Modified: directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/partition/DefaultContextPartitionNexus.java URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/partition/DefaultContextPartitionNexus.java?rev=230471&r1=230470&r2=230471&view=diff ============================================================================== --- directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/partition/DefaultContextPartitionNexus.java (original) +++ directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/partition/DefaultContextPartitionNexus.java Fri Aug 5 06:56:37 2005 @@ -73,6 +73,9 @@ /** the vendorName DSE operational attribute */ private static final String VENDORNAME_ATTR = "vendorName"; + /** the vendorVersion DSE operational attribute */ + private static final String VENDORVERSION_ATTR = "vendorVersion"; + /** the namingContexts DSE operational attribute */ private static final String NAMINGCTXS_ATTR = "namingContexts"; @@ -119,6 +122,10 @@ attr = new LockableAttributeImpl( VENDORNAME_ATTR ); attr.add( ASF ); + rootDSE.put( attr ); + + attr = new LockableAttributeImpl( VENDORVERSION_ATTR ); + attr.add( "$Rev$" ); rootDSE.put( attr ); }