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

Examples of org.hibernate.envers.configuration.internal.metadata.AuditEntityNameRegister


      Configuration cfg, ReflectionManager reflectionManager,
      GlobalConfiguration globalCfg, AuditEntitiesConfiguration verEntCfg,
      AuditStrategy auditStrategy, ClassLoaderService classLoaderService,
      Document revisionInfoXmlMapping, Element revisionInfoRelationMapping) {
    // Creating a name register to capture all audit entity names created.
    final AuditEntityNameRegister auditEntityNameRegister = new AuditEntityNameRegister();
    final DOMWriter writer = new DOMWriter();

    // Sorting the persistent class topologically - superclass always before subclass
    final Iterator<PersistentClass> classes = GraphTopologicalSort.sort( new PersistentClassGraphDefiner( cfg ) )
        .iterator();
View Full Code Here


      Configuration cfg, ReflectionManager reflectionManager,
      GlobalConfiguration globalCfg, AuditEntitiesConfiguration verEntCfg,
      AuditStrategy auditStrategy, ClassLoaderService classLoaderService,
      Document revisionInfoXmlMapping, Element revisionInfoRelationMapping) {
    // Creating a name register to capture all audit entity names created.
    final AuditEntityNameRegister auditEntityNameRegister = new AuditEntityNameRegister();
    final DOMWriter writer = new DOMWriter();

    // Sorting the persistent class topologically - superclass always before subclass
    final Iterator<PersistentClass> classes = GraphTopologicalSort.sort( new PersistentClassGraphDefiner( cfg ) )
        .iterator();
View Full Code Here

TOP

Related Classes of org.hibernate.envers.configuration.internal.metadata.AuditEntityNameRegister

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.