]
Steve Ebersole closed HHH-3512.
-------------------------------
Resolution: Fixed
Removing bad version
Registration of IdentifierGenerators (short naming)
---------------------------------------------------
Key: HHH-3512
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-3512
Project: Hibernate Core
Issue Type: New Feature
Components: core, metamodel
Reporter: Steve Ebersole
Assignee: Steve Ebersole
Fix For: 3.5.0.Beta-1
Another way to look at this is to allow configuration of IdentifierGeneratorFactory.
Either allow explicit registration under a short name in config:
<identifier-generator name="sequence-style"
class="org.hibernate.id.enhanced.SequenceStyleGenerator"/>
or via an explicit contract:
public interface Registerable {
public String getRegistrationName();
}
public class SequenceStyleGenerator implements IdentifierGenerator, Registerable {
...
public String getRegistrationName() {
return "sequence-style";
}
}
The second, while certainly more verbose, can be used applied to other situations where
we want to allow registration moving forward (types, property-accessor, etc).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: