On 21/12/2006, at 11:34 AM, Terry Jeske wrote:

I have a project object as with the following variables:

Project.java
---------------------------------
int id
String projectName
String statusName

Hibernate does not support this, and to get around it I have had to create a view that hibernate pulls from. We like having the status_table look-up because it makes it easy to return sorted lists of projects, while giving us
the freedom to change status text.


Put this in Project.java if you want a convenience method for this purpose.

public String getStatusName() {
        return getStatus().getName();
}


Ari Maniatis

-------------------------->
ish
http://www.ish.com.au
Level 1, 30 Wilson Street Newtown 2042 Australia
phone +61 2 9550 5001   fax +61 2 9550 4001
GPG fingerprint CBFB 84B4 738D 4E87 5E5C  5EFA EF6A 7D2E 3E49 102A


Attachment: PGP.sig
Description: This is a digitally signed message part

Reply via email to