Hi,
I'm working with an architecture that uses an adaptive model (
http://www.adaptiveobjectmodel.com/) and I'm trying to add support for it into hibernate.
Taking the code for "Dynamic map support" i implemented my own:
org.hibernate.EntityMode
org.hibernate.tuple.AbstractEntityTuplizer
org.hibernate.property.PropertyAccessor
org.hibernate.tuple.Instantiator
org.hibernate.proxy.AbstractLazyInitializer
org.hibernate.proxy.HibernateProxy
org.hibernate.proxy.ProxyFactory
but i don't understand how to put together all the bits and pieces.
Is there a way to tell the engine to use my own implementation by default e.g. using hibernate.default_entity_mode? Or do I need to specify a custom tuplizer for every class?
Thanks
Alessandro