You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/12/19 00:30:43 UTC

svn commit: r357555 - /directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/MaxImmSubFilterTest.java

Author: elecharny
Date: Sun Dec 18 15:30:37 2005
New Revision: 357555

URL: http://svn.apache.org/viewcvs?rev=357555&view=rev
Log:
Replaced LdapName by LdapDN

Modified:
    directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/MaxImmSubFilterTest.java

Modified: directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/MaxImmSubFilterTest.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/MaxImmSubFilterTest.java?rev=357555&r1=357554&r2=357555&view=diff
==============================================================================
--- directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/MaxImmSubFilterTest.java (original)
+++ directory/apacheds/branches/DN-refactoring/core/src/test/java/org/apache/ldap/server/authz/support/MaxImmSubFilterTest.java Sun Dec 18 15:30:37 2005
@@ -34,8 +34,8 @@
 import org.apache.ldap.common.aci.ACITuple;
 import org.apache.ldap.common.aci.AuthenticationLevel;
 import org.apache.ldap.common.aci.ProtectedItem;
-import org.apache.ldap.common.name.LdapName;
 import org.apache.ldap.common.filter.ExprNode;
+import org.apache.ldap.common.name.LdapDN;
 import org.apache.ldap.server.partition.DirectoryPartitionNexusProxy;
 import org.apache.ldap.server.DirectoryService;
 import org.apache.ldap.server.DirectoryServiceListener;
@@ -56,7 +56,7 @@
     private static final Set EMPTY_SET =
         Collections.unmodifiableSet( new HashSet() );
 
-    private static final Name ROOTDSE_NAME = new LdapName();
+    private static final Name ROOTDSE_NAME = new LdapDN();
     private static final Name ENTRY_NAME;
     private static final Collection PROTECTED_ITEMS = new ArrayList();
     private static final Attributes ENTRY = new BasicAttributes();
@@ -66,7 +66,7 @@
     {
         try
         {
-            ENTRY_NAME = new LdapName( "ou=test, ou=system" );
+            ENTRY_NAME = new LdapDN( "ou=test, ou=system" );
         }
         catch( NamingException e )
         {