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
This archive was generated by hypermail 2.0.0 : Wed Dec 20 2006 - 20:09:22 EST