Refactor properties bootup, remove GlobalProperties and allow ServerConfig.loadFromProperties()

This commit is contained in:
rbygrave
2014-11-30 17:08:02 +13:00
parent fe65a0ccb9
commit 370267ab6f
105 changed files with 3772 additions and 3963 deletions
@@ -1,6 +1,6 @@
package com.avaje.tests.model.basic;
import java.util.Date;
import java.sql.Timestamp;
import javax.persistence.Entity;
import javax.persistence.Id;
@@ -34,7 +34,7 @@ public class EBasic {
String description;
Date someDate;
Timestamp someDate;
public Integer getId() {
return id;
@@ -68,11 +68,11 @@ public class EBasic {
this.description = description;
}
public Date getSomeDate() {
public Timestamp getSomeDate() {
return someDate;
}
public void setSomeDate(Date someDate) {
public void setSomeDate(Timestamp someDate) {
this.someDate = someDate;
}