I have an Entity for holding Selection Domains, e.g. for Dropdown Boxes:
@Entity
public class Selection {
@Id
private long id;
private String category;
private long index;
private String text;
}
The corresponding table has entries for several categories:
ID Category Index Text
-----------------------------------
1 Status 1 New
2 Status 2 Active
3 Status 3 Obsolete
4 Type 1 Simple
5 Type 2 Complex
[...]
Now I have Entities which should map special categories of Selections:
@Entity
public class EntityWithStatus {
@Id
private long id;
@JoinColumn(name="status_id", referencedColumnName="index", nullable=false)
private Selection status;
}
Status "New" has index 1, but this index also applies to Type "Simple". I don't want to map to Selection's Primary Key. Is there a way to restrict this mapping to specific categories?
One way I found is to use Inheritance, using the category as discriminator. But that would mean I have to add Entities/Classes for every category. I'd like to prevent that...