Adapted package refactorings in Spring Data Commons.

Resolved package dependencies as well.
This commit is contained in:
Oliver Gierke
2011-06-13 20:24:16 -07:00
parent 868f3ec5a6
commit ea0ff71499
15 changed files with 19 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ import javax.persistence.EntityManager;
import org.springframework.data.jpa.repository.support.JpaEntityInformation;
import org.springframework.data.jpa.repository.support.JpaRepositoryFactory;
import org.springframework.data.repository.support.RepositoryMetadata;
import org.springframework.data.repository.core.RepositoryMetadata;
/**

View File

@@ -21,7 +21,7 @@ import javax.persistence.EntityManager;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean;
import org.springframework.data.repository.support.RepositoryFactorySupport;
import org.springframework.data.repository.core.support.RepositoryFactorySupport;
/**

View File

@@ -34,10 +34,10 @@ import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.domain.sample.User;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.sample.UserRepository;
import org.springframework.data.repository.core.RepositoryMetadata;
import org.springframework.data.repository.core.support.DefaultRepositoryMetadata;
import org.springframework.data.repository.query.QueryMethod;
import org.springframework.data.repository.query.QueryMethod.Type;
import org.springframework.data.repository.support.DefaultRepositoryMetadata;
import org.springframework.data.repository.support.RepositoryMetadata;
/**

View File

@@ -28,8 +28,8 @@ import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.repository.core.RepositoryMetadata;
import org.springframework.data.repository.query.QueryCreationException;
import org.springframework.data.repository.support.RepositoryMetadata;
/**

View File

@@ -33,7 +33,7 @@ import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.data.jpa.repository.QueryHints;
import org.springframework.data.jpa.repository.sample.UserRepository;
import org.springframework.data.repository.support.RepositoryMetadata;
import org.springframework.data.repository.core.RepositoryMetadata;
/**

View File

@@ -29,7 +29,7 @@ import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.data.domain.Persistable;
import org.springframework.data.repository.support.EntityInformation;
import org.springframework.data.repository.core.EntityInformation;
/**

View File

@@ -36,7 +36,7 @@ import org.springframework.dao.support.PersistenceExceptionTranslator;
import org.springframework.data.domain.Persistable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.Repository;
import org.springframework.data.repository.support.RepositoryFactorySupport;
import org.springframework.data.repository.core.support.RepositoryFactorySupport;
/**

View File

@@ -34,7 +34,7 @@ import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.custom.CustomGenericJpaRepositoryFactory;
import org.springframework.data.jpa.repository.custom.UserCustomExtendedRepository;
import org.springframework.data.querydsl.QueryDslPredicateExecutor;
import org.springframework.data.repository.support.DefaultRepositoryMetadata;
import org.springframework.data.repository.core.support.DefaultRepositoryMetadata;
import org.springframework.transaction.annotation.Transactional;