Package org.jitterbit.integration.data.folder

Examples of org.jitterbit.integration.data.folder.FolderStructureDuplicator


        protected Integer doInBackground() throws Exception {
            boolean hasLock = IntegrationProjectLock.acquireWithin(5, TimeUnit.SECONDS);
            if (hasLock) {
                try {
                    EntityType sourceType = sourceFolder.getItemType();
                    FolderStructureDuplicator duplicator = new FolderStructureDuplicator(project, sourceType);
                    duplicator.duplicateTo(destinationTypes);
                    int newFolders = duplicator.getNumberOfNewFolders();
                    duplicator.save(persistor);
                    return newFolders;
                } finally {
                    IntegrationProjectLock.release();
                }
            }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.folder.FolderStructureDuplicator

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.