[hibernate-issues] [Hibernate-JIRA] Updated: (HHH-5375) Move AnnotationConfiguration-added methods to Configuration and deprecate AnnotationConfiguration

Steve Ebersole (JIRA) noreply at atlassian.com
Wed Jul 21 15:27:37 EDT 2010


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-5375?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

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: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list