Re: [hibernate-dev] IdentifierGeneratorFactory as a service?

2011-09-06 Thread Steve Ebersole
The one in Configuration is the one used in the current code paths. However the one in MetadataImpl will be used from 4.1 onward. So both is best. It really should be trivial to change in both once the actual thing to change to is in place. On Tue 06 Sep 2011 12:19:09 PM CDT, Emmanuel Bernard

Re: [hibernate-dev] IdentifierGeneratorFactory as a service?

2011-09-06 Thread Emmanuel Bernard
Damn so it looks like int he current codebase, identifierGeneratorFactory is held both in MetadataImpl and Configuration. Do you know which one is currently used in the codebase? Should I make sure to update both? On 6 sept. 2011, at 13:31, Emmanuel Bernard wrote: > Hi all, > I have the need to

[hibernate-dev] IdentifierGeneratorFactory as a service?

2011-09-06 Thread Emmanuel Bernard
Hi all, I have the need to implement https://hibernate.onjira.com/browse/HHH-6091 (Let people customize identifier generator strategy mappings programmatically in Hibernate 4) and I am wondering why IdentifierGeneratorFactory is not a service and if it would make sense for me to implement it as