Preparing to replace the exceptions.

This commit is contained in:
Ulrik Sandberg
2007-01-09 22:55:31 +00:00
parent 9326a80b53
commit 392a62d0c3
3 changed files with 4 additions and 4 deletions

View File

@@ -8,9 +8,9 @@ import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.ldap.EntryNotFoundException;
import org.springframework.ldap.samples.person.domain.Group;
import org.springframework.ldap.samples.person.domain.SearchCriteria;
import org.springframework.ldap.support.EntryNotFoundException;
public class DummyGroupDao implements GroupDao {
private static Map GROUPS;

View File

@@ -8,9 +8,9 @@ import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.ldap.EntryNotFoundException;
import org.springframework.ldap.samples.person.domain.Person;
import org.springframework.ldap.samples.person.domain.SearchCriteria;
import org.springframework.ldap.support.EntryNotFoundException;
public class DummyPersonDao implements PersonDao {
private static Map PERSONS;

View File

@@ -17,12 +17,12 @@ package org.springframework.ldap.samples.person.dao;
import javax.naming.NamingException;
import org.springframework.ldap.DefaultNamingExceptionTranslator;
import org.springframework.ldap.NamingExceptionTranslator;
import org.springframework.ldap.core.ContextMapper;
import org.springframework.ldap.samples.person.domain.Person;
import org.springframework.ldap.support.DefaultNamingExceptionTranslator;
import org.springframework.ldap.support.DirContextOperations;
import org.springframework.ldap.support.DistinguishedName;
import org.springframework.ldap.support.NamingExceptionTranslator;
import org.springframework.util.Assert;
/**