I have a hierarchy of objects in hibernate. I have Customers and Customers have Locations.
I would like to associate an Alert object with either a customer or location.
How would I represent this type of association in hibernate?
In tables I would think to create them like so:
Alert Table: alertId, alertName
Alert Relations: alertId, entityTable, entityId
The entity table could either be a Customer or Location and entityId would be the id in that respective table.
Can hibernate support this type of relationship? If so what would the table structure and relationship look like in the mapping?