Package org.jitterbit.integration.client.structure.cache

Examples of org.jitterbit.integration.client.structure.cache.InputAndOutputMappingTreeStructureCache.copy()


        }

        public void handle(Transformation copy) {
            try {
                InputAndOutputMappingTreeStructureCache structureCache = project.getTransformationMappingStructureCache();
                structureCache.copy(original.getID(), copy.getID());
            } catch (DataCacheException ex) {
                // This is not a fatal error. All it means is that the mapping structures for the
                // copy will have to be recreated.
                ErrorLog.log(EntityCopyMachine.class, "Failed to create copy of cached mapping structures for " +
                        "the transformation \"" + copy.getName(), ex);
View Full Code Here


        }

        public void handle(WebServiceCall copy) {
            try {
                InputAndOutputMappingTreeStructureCache cache = project.getWebServiceMappingStructureCache();
                cache.copy(original.getID(), copy.getID());
            } catch (DataCacheException ex) {
                // This is not a fatal error. All it means is that the mapping structures for the
                // copy will have to be recreated.
                ErrorLog.log(EntityCopyMachine.class, "Failed to create copy of cached mapping structures for " +
                        "the web service call \"" + copy.getName(), ex);
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.