The container class must implement (directly or indirectly) the Map interface.
Note: Do not use both useMapClass(Class concreteClass), useTransparentMap(). The last use of one of the two methods will override the previous one.
186187188189190191192193194195196
// the collection table be processed before hand. process(mapping); // Process the fetch type if (usesIndirection()) { mapping.useTransparentMap(); } else { mapping.dontUseIndirection(); mapping.useMapClass(java.util.Hashtable.class); }
184185186187188189190191192193194