(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / JpaCustomizer.java
index dcafb4260011a277589235a003f44871d80e00bf..b022234228c925369dbb86e89676b00fd0297f25 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
 import java.util.Map;
@@ -33,16 +33,20 @@ import org.dbunit.dataset.filter.ITableFilterSimple;
 public interface JpaCustomizer {
 
     /**
-     * Customizes the persistence unit through properties. 
-     * @param aPersistenceUnit Persistence unit. 
-     * @param aJpaProperties Current properties. 
+     * 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. 
+     * Gets the tables specific to the JPA provider.
+     * 
+     * @return Tables.
      */
     ITableFilterSimple getJpaTables();
 }