@@ -39,6 +39,8 @@ public abstract class JpaObject extends GsonPropertyObject implements Serializab
}
abstract public void onPersist() throws Exception;
+
+ public static final String default_schema = "X";
public static final String ColumnNamePrefix = "x";
@@ -22,10 +22,4 @@ public abstract class SliceJpaObject extends JpaObject {
this.distributeFactor = distributeFactor;
- // protected void concreteDistributeFactor() {
- // if (null == this.distributeFactor) {
- // this.distributeFactor = (new Random()).nextInt(1000);
- // }
-