what is Swallowed exceptions?
Anyway, i tried to change the one-to-one to a property and adding get/set for it in the file, and this worked fine.
Are these lines not good enough for a one to one?:
--------------------------
// one to one
private com.corp.prod.om.BasicProfile _basicprofile;
/**
* @hibernate.property
* column=basicprofile
*/
public com.corp.prod.om.BasicProfile getBasicprofile() {
return this._basicprofile;
}
/**
* Set the value related to the column: basicprofile
* @param _basicprofile the basicprofile value
*/
public void setBasicprofile(
com.corp.prod.om.BasicProfile _basicprofile) {
this._basicprofile = _basicprofile;
}
--------------------------
I thought about using subclass instead, but i cant find any example for a joined-subclass in another file (in the FAQ it says you can do this with the extends, but it doesnt seem to work just adding that..)
|