Examples of importDump()


Examples of de.innovationgate.webgate.api.utils.ContentStoreDumpManager.importDump()

           
           
            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

Examples of de.innovationgate.webgate.api.utils.ContentStoreDumpManager.importDump()

            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
Copyright © 2018 www.massapi.com. 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.