Hello,
I am wondering if it is possible for me to have a subclass of a subclass with Hibernate? I found a post referencing this question:
http://forum.hibernate.org/viewtopic.ph ... nheritance
but, I didn't seem to get an answer from this. Any help would be appreciated.
Shown below is what I am referring to:
----------------------------------------------------------
<class name="Person" table="person">
<subclass name="User" table="user">
<subclass name="Manager" table="manager">
...
</subclass>
</subclass>
<class>
----------------------------------------------------------
Thanks. If this is possible, could you explain how the discriminator values would work with this situation?
Joe