]
Steve Ebersole updated HHH-5375:
--------------------------------
Fix Version/s: (was: 3.6.0.Beta1)
3.6.x
Move AnnotationConfiguration-added methods to Configuration and
deprecate AnnotationConfiguration
-------------------------------------------------------------------------------------------------
Key: HHH-5375
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-5375
Project: Hibernate Core
Issue Type: Improvement
Components: annotations, core
Reporter: Steve Ebersole
Assignee: Steve Ebersole
Fix For: 3.6.x
Time Spent: 14.1h
Remaining Estimate: 0h
For example:
{code}
public class AnnotationConfiguration extends Confinguration {
...
public AnnotationConfiguration addAnnotatedClass(Class persistentClass) throws
MappingException {
...
}
}
{code}
becomes
{code}
public class Configuration {
...
public Configuration addAnnotatedClass(Class persistentClass) throws MappingException
{
...
}
}
@Deprecated
public class AnnotationConfiguration extends Configuration {
...
@Override
public AnnotationConfiguration addAnnotatedClass(Class persistentClass) throws
MappingException {
return (AnnotationConfiguration) super.addAnnotatedClass( persistentClass );
}
}
{code}
The end game being that we move all functionality to Configuration, but still leave
AnnotationConfiguration still working (though deprecated) for the time being.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: