Package hu.sztaki.lpds.pgportal.utils

Examples of hu.sztaki.lpds.pgportal.utils.CompressUtil


            } else {
                logger.trace("Importing " + baseWorkflow + " exported by " + owner);
                String workflowId = importWorkflow(userId, appFile.getName(), baseWorkflow, owner);

                // setting input.tar as input file
                CompressUtil cu = new CompressUtil();
                File inputTgz = cu.doCompression(FolderProperties.getTmpInputFolder(userId));
                logger.debug("Input tar has been created here: " + inputTgz.getAbsoluteFile());

                asmService.setCommandLineArg(userId, workflowId, "application", appFile.getName());
                asmService.placeUploadedFile(userId, inputTgz, workflowId, "application", "0");
View Full Code Here

TOP

Related Classes of hu.sztaki.lpds.pgportal.utils.CompressUtil

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.