(no commit message)
authorErik Brakkee <erik@brakkee.org>
Sat, 17 Jul 2010 21:36:40 +0000 (21:36 +0000)
committerErik Brakkee <erik@brakkee.org>
Sat, 17 Jul 2010 21:36:40 +0000 (21:36 +0000)
test/hibernate/src/main/java/org/wamblee/test/persistence/hibernate/HibernateJpaCustomizer.java

index fd576dbe6a962026eb5247185080cf4684a1f4c6..ed1e9786b8843ad0a2e23506f2343c4fe5ed64a9 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.hibernate;
 
 import java.util.Map;
@@ -37,17 +37,20 @@ public class HibernateJpaCustomizer implements JpaCustomizer {
     @Override
     public void customize(PersistenceUnitDescription aPersistenceUnit,
         Map<String, String> aJpaProperties) {
-        
+
         System.setProperty("hibernate.temp.use_jdbc_metadata_defaults", "true");
-        
+
         // Set non-JPA connection properties for older versions of hibernate
         System.getProperties().remove("hibernate.connection.datasource");
-        if (System.getProperty("hibernate.connection.datasource") != null ) { 
+        if (System.getProperty("hibernate.connection.datasource") != null) {
             throw new RuntimeException("ERROR");
         }
-        System.setProperty("hibernate.connection.url", aJpaProperties.get("javax.persistence.jdbc.url"));
-        System.setProperty("hibernate.connection.username", aJpaProperties.get("javax.persistence.jdbc.user"));
-        System.setProperty("hibernate.connection.password", aJpaProperties.get("javax.persistence.jdbc.password"));
+        System.setProperty("hibernate.connection.url", aJpaProperties
+            .get("javax.persistence.jdbc.url"));
+        System.setProperty("hibernate.connection.username", aJpaProperties
+            .get("javax.persistence.jdbc.user"));
+        System.setProperty("hibernate.connection.password", aJpaProperties
+            .get("javax.persistence.jdbc.password"));
 
         // Hibernate schema generation
         aJpaProperties.put("hibernate.hbm2ddl.auto", "create-drop");