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

Steve Ebersole (JIRA) noreply at atlassian.com
Mon Jul 12 12:28:13 EDT 2010


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


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