removed filter for classes from the JPA providers package for EclipseLink (SPR-6040)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2293 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Thomas Risberg 2009-11-07 19:46:46 +00:00
parent a502272b6b
commit 5b5609655a
1 changed files with 4 additions and 5 deletions

View File

@ -39,7 +39,11 @@ import org.springframework.orm.jpa.JpaDialect;
* EclipseLink is effectively the next generation of the TopLink product.
* Thanks to Mike Keith for the original EclipseLink support prototype!
*
* <p>NOTE: No need to filter out classes from the JPA providers package for
* EclipseLink (see SPR-6040)
*
* @author Juergen Hoeller
* @author Thomas Risberg
* @since 2.5.2
* @see org.eclipse.persistence.jpa.PersistenceProvider
* @see org.eclipse.persistence.jpa.JpaEntityManager
@ -55,11 +59,6 @@ public class EclipseLinkJpaVendorAdapter extends AbstractJpaVendorAdapter {
return this.persistenceProvider;
}
@Override
public String getPersistenceProviderRootPackage() {
return "org.eclipse.persistence";
}
@Override
public Map<String, Object> getJpaPropertyMap() {
Map<String, Object> jpaProperties = new HashMap<String, Object>();