#392 - Fix for AutoCommit mode ... fixing change from #204 ... such that AutoCommitJdbcTransaction works as expected

This commit is contained in:
Robin Bygrave
2015-08-20 22:38:53 +12:00
parent 84190f3c2a
commit 2caeb4fff1
4 changed files with 81 additions and 26 deletions
@@ -29,6 +29,13 @@ public class UTMaster extends Model {
@OneToMany(cascade = CascadeType.ALL)
List<UTDetail> details;
public UTMaster() {
}
public UTMaster(String name) {
this.name = name;
}
public Integer getId() {
return id;
}