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 no luck. Any ideas?

Thanks


-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
hibernate-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Reply via email to