Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 52938 invoked from network); 23 Dec 2008 22:34:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Dec 2008 22:34:55 -0000 Received: (qmail 49211 invoked by uid 500); 23 Dec 2008 22:34:09 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 49182 invoked by uid 500); 23 Dec 2008 22:34:09 -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 49171 invoked by uid 99); 23 Dec 2008 22:34:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2008 14:34:09 -0800 X-ASF-Spam-Status: No, hits=-1999.6 required=10.0 tests=ALL_TRUSTED,SUBJECT_FUZZY_TION 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; Tue, 23 Dec 2008 22:34:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6A587238896C; Tue, 23 Dec 2008 14:33:48 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729149 - /directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java Date: Tue, 23 Dec 2008 22:33:48 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081223223348.6A587238896C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Tue Dec 23 14:33:48 2008 New Revision: 729149 URL: http://svn.apache.org/viewvc?rev=729149&view=rev Log: Hidden some setter from xbean Modified: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java Modified: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java?rev=729149&r1=729148&r2=729149&view=diff ============================================================================== --- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java (original) +++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/JdbmPartition.java Tue Dec 23 14:33:48 2008 @@ -143,6 +143,9 @@ // ------------------------------------------------------------------------ + /** + * @org.apache.xbean.Property hidden="true" + */ public void setRegistries( Registries registries ) throws Exception { initRegistries( registries ); @@ -284,6 +287,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setPresenceIndexOn( Index index ) throws Exception { store.setPresenceIndex( index ); @@ -296,6 +302,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setOneLevelIndexOn( Index index ) throws Exception { store.setOneLevelIndex( index ); @@ -308,6 +317,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setAliasIndexOn( Index index ) throws Exception { store.setAliasIndex( index ); @@ -320,6 +332,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setOneAliasIndexOn( Index index ) throws NamingException { store.setOneAliasIndex( ( Index ) index ); @@ -332,6 +347,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setSubAliasIndexOn( Index index ) throws NamingException { store.setSubAliasIndex( ( Index ) index ); @@ -344,6 +362,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setUpdnIndexOn( Index index ) throws NamingException { store.setUpdnIndex( ( Index ) index ); @@ -356,6 +377,9 @@ } + /** + * @org.apache.xbean.Property hidden="true" + */ public final void setNdnIndexOn( Index index ) throws NamingException { store.setNdnIndex( ( Index ) index );