javadoc updates
[utils] / test / enterprise / src / main / java / org / wamblee / support / persistence / JpaCustomizer.java
index 7c48cb248c226793879b6611d40ad0a6c83f7909..9914e2a1158db2a9d8257dc8f90cf86ace0b6193 100644 (file)
@@ -32,8 +32,17 @@ import org.dbunit.dataset.filter.ITableFilterSimple;
  */
 public interface JpaCustomizer {
 
+    /**
+     * Customizes the persistence unit through properties. 
+     * @param aPersistenceUnit Persistence unit. 
+     * @param aJpaProperties Current properties. 
+     */
     void customize(PersistenceUnitDescription aPersistenceUnit,
         Map<String, String> aJpaProperties);
 
+    /**
+     * Gets the tables specific to the JPA provider. 
+     * @return Tables. 
+     */
     ITableFilterSimple getJpaTables();
 }