Re: [Hibernate] Integer sequence
To: <[EMAIL PROTECTED]> Sent by:cc: [EMAIL PROTECTED] Subject: [Hibernate] Integer sequence
[Hibernate] Integer sequence
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