Package org.jitterbit.integration.client.project.jitterpack

Examples of org.jitterbit.integration.client.project.jitterpack.DescriptorExtractor.extract()


    private void unpackImpl(JitterPack jitterpack, ImportParameters params, File destinationFolder,
                    UnpackCallback callback) {
        logUnpackRequest(jitterpack, destinationFolder);
        try {
            DescriptorExtractor extractor = new DescriptorExtractor(jitterpack.getFile(), params, null);
            JitterPackDescriptor descriptor = extractor.extract();
            DestinationChecker destinationChecker = new DestinationChecker();
            if (!destinationChecker.isLocationOk(params, descriptor, destinationFolder)) {
                logDestinationDenied(destinationFolder);
                callback.unpackingCancelled(null);
                return;
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.