Simplify LDAP directory.
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / util / directory / ldap / LdapDirectoryDao.java
index 3a0f4e6e019987c517250f86913b02daf938c5cc..2739932767419d1d5825d658209cbe4e1be0ceda 100644 (file)
@@ -10,9 +10,9 @@ import org.argeo.util.directory.HierarchyUnit;
 import org.argeo.util.transaction.WorkingCopyProcessor;
 
 public interface LdapDirectoryDao extends WorkingCopyProcessor<LdapEntryWorkingCopy> {
-       Boolean daoHasEntry(LdapName dn);
+       Boolean entryExists(LdapName dn);
 
-       LdapEntry daoGetEntry(LdapName name) throws NameNotFoundException;
+       LdapEntry doGetEntry(LdapName name) throws NameNotFoundException;
 
        List<LdapEntry> doGetEntries(LdapName searchBase, String filter, boolean deep);
 
@@ -25,8 +25,8 @@ public interface LdapDirectoryDao extends WorkingCopyProcessor<LdapEntryWorkingC
        LdapEntry newUser(LdapName name, Attributes attrs);
 
        LdapEntry newGroup(LdapName name, Attributes attrs);
-       
+
        void init();
-       
+
        void destroy();
 }