Package org.hibernate.envers.configuration.internal.metadata.reader

Examples of org.hibernate.envers.configuration.internal.metadata.reader.AnnotationsMetadataReader


    // Reading metadata from annotations
    while ( classes.hasNext() ) {
      final PersistentClass pc = classes.next();

      // Collecting information from annotations on the persistent class pc
      final AnnotationsMetadataReader annotationsMetadataReader =
          new AnnotationsMetadataReader( globalCfg, reflectionManager, pc );
      final ClassAuditingData auditData = annotationsMetadataReader.getAuditData();

      classesAuditingData.addClassAuditingData( pc, auditData );
    }

    // Now that all information is read we can update the calculated fields.
View Full Code Here


    // Reading metadata from annotations
    while ( classes.hasNext() ) {
      final PersistentClass pc = classes.next();

      // Collecting information from annotations on the persistent class pc
      final AnnotationsMetadataReader annotationsMetadataReader =
          new AnnotationsMetadataReader( globalCfg, reflectionManager, pc );
      final ClassAuditingData auditData = annotationsMetadataReader.getAuditData();

      classesAuditingData.addClassAuditingData( pc, auditData );
    }

    // Now that all information is read we can update the calculated fields.
View Full Code Here

TOP

Related Classes of org.hibernate.envers.configuration.internal.metadata.reader.AnnotationsMetadataReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.