Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.1.1
I have a utility class Historique which contains a map of Persistent objects. I also have a couple of persistent objects which have a Historique attribute.
How can I map this stuff ?
Code:
public Historique {
private Map map
...methods here
}
public A {
Historique h<Date, B>; //B is a persistent Object
}
public AnotherA {
Historique h<Date, C>; //C is also a persistent Object
regards,
dom