Author: akarasulu
Date: Mon May 26 21:25:47 2008
New Revision: 660369
URL: http://svn.apache.org/viewvc?rev=660369&view=rev
Log:
fixing breakage of xbean on contextEntry bean
Modified:
directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/Partition.java
directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java
Modified: directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/Partition.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/Partition.java?rev=660369&r1=660368&r2=660369&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/Partition.java
(original)
+++ directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/Partition.java
Mon May 26 21:25:47 2008
@@ -92,7 +92,7 @@
*
* @return the entry for the suffix of this Partition.
*/
- ClonedServerEntry getContextEntry();
+ ServerEntry getContextEntry();
/**
Modified: directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java?rev=660369&r1=660368&r2=660369&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java
(original)
+++ directory/apacheds/branches/bigbang/core/src/main/java/org/apache/directory/server/core/partition/impl/btree/BTreePartition.java
Mon May 26 21:25:47 2008
@@ -138,7 +138,7 @@
*
* @return the root suffix entry for this BTreePartition
*/
- public ClonedServerEntry getContextEntry()
+ public ServerEntry getContextEntry()
{
if ( contextEntry != null )
{
|