(no commit message)
[utils] / support / test / enterprise / src / main / java / org / wamblee / support / persistence / JpaCustomizer.java
diff --git a/support/test/enterprise/src/main/java/org/wamblee/support/persistence/JpaCustomizer.java b/support/test/enterprise/src/main/java/org/wamblee/support/persistence/JpaCustomizer.java
deleted file mode 100644 (file)
index 7930301..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.wamblee.support.persistence;
-
-import java.util.Map;
-import java.util.ServiceLoader;
-
-import org.dbunit.dataset.filter.ITableFilterSimple;
-
-/**
- * JPA customizer is used to customize properties for a given JPA implementation.
- * 
- * Implementations of JpaCustomizer are found using {@link ServiceLoader}. In case
- * of testing with a specific JPA provider, the customizer library for that JPA provider
- * must be on the classpath as well. 
- * 
- * @author Erik Brakkee
- */
-public interface JpaCustomizer {
-
-    void customize(PersistenceUnitDescription aPersistenceUnit, Map<String,String> aJpaProperties);
-    
-    ITableFilterSimple getJpaTables();
-}