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

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


  private Document generateDefaultRevisionInfoXmlMapping() {
    final Document document = XMLHelper.getDocumentFactory().createDocument();

    final Element classMapping = MetadataTools.createEntity(
        document,
        new AuditTableData( null, null, globalCfg.getDefaultSchemaName(), globalCfg.getDefaultCatalogName() ),
        null,
        null
    );

    classMapping.addAttribute( "name", revisionInfoEntityName );
View Full Code Here


  private Document generateDefaultRevisionInfoXmlMapping() {
    final Document document = XMLHelper.getDocumentFactory().createDocument();

    final Element classMapping = MetadataTools.createEntity(
        document,
        new AuditTableData( null, null, globalCfg.getDefaultSchemaName(), globalCfg.getDefaultCatalogName() ),
        null,
        null
    );

    classMapping.addAttribute( "name", revisionInfoEntityName );
View Full Code Here

TOP

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

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.