Removed DOCUMENT ME comments that were generated and applied source code
[utils] / test / enterprise / src / main / java / org / wamblee / support / persistence / JpaCustomizer.java
index 7930301279967e3e86ad4c34be6aafdb531d5e58..97246f5d31da71a297e672c72a399bb07e42a713 100644 (file)
@@ -6,17 +6,19 @@ import java.util.ServiceLoader;
 import org.dbunit.dataset.filter.ITableFilterSimple;
 
 /**
- * JPA customizer is used to customize properties for a given JPA implementation.
+ * 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. 
+ * 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);
-    
+    void customize(PersistenceUnitDescription aPersistenceUnit,
+        Map<String, String> aJpaProperties);
+
     ITableFilterSimple getJpaTables();
 }