Package de.innovationgate.webgate.api.utils

Examples of de.innovationgate.webgate.api.utils.ContentStoreDumpManager


           
           
           
            try {
                // All the content data and schema
                ContentStoreDumpManager importer = new ContentStoreDumpManager(_importSource, db);
                importer.importDump();

                // The ACL
                WGFactory.getLogger().info("Importing original ACL");
                Iterator aclEntries = _importSource.getACL().getAllEntries().iterator();
                while (aclEntries.hasNext()) {
View Full Code Here


       
        // Replicate
        log.info("Synchronizing data to dump database");
        dbSource.lock();
        try {
            ContentStoreDumpManager importer = new ContentStoreDumpManager(dbSource, dbTarget, log);
            importer.exportDump(includeACL, includeSystemAreas);
        }
        finally {
            dbSource.unlock();
        }
       
View Full Code Here

        if (log != null) {
            log.info("Importing dump data");
        }
       
        // Do the dump
        ContentStoreDumpManager importer = new ContentStoreDumpManager(sourceDB, targetDB, log);
        boolean result = importer.importDump(includeACL, includeSystemAreas);
       
        // Close dump database
        sourceDB.close();
       
        return result;
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.utils.ContentStoreDumpManager

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.