Re: [Hibernate] Integer sequence

2003-02-07 Thread Gavin . King
To: <[EMAIL PROTECTED]> Sent by:cc: [EMAIL PROTECTED] Subject: [Hibernate] Integer sequence

[Hibernate] Integer sequence

2003-02-06 Thread Matt Dowell
Currently our app uses Integers as Id's for all the current Data Access Objects. To be consistent, is it possible to somehow shoehorn the ID as an Integer? I tried overriding the setId method like so: public void setId( Long inIdLong ) { id = new Integer( inIdLong.intValue() ); } .with n