Package eu.planets_project.ifr.core.services.migration.generic.common

Examples of eu.planets_project.ifr.core.services.migration.generic.common.MultiProperties


        } catch (IOException e) {
            return new MigrateResult(null, ServiceUtils
                    .createExceptionErrorReport("Could not load commands.xml",
                            e));
        }
        MultiProperties mp = MultiProperties.load(p);
        Map<String, String> params = new HashMap<String, String>();
        for (Parameter param : parameters) {
            params.put(param.getName(), param.getValue());
        }
        Map<String, String> toolParams = mp.get(params.get("tool-name"));
        try {
            File inputFile = DigitalObjectUtils.toFile(dob);

            File outputFile = File.createTempFile("generic-output", "tmp");
            FileUtils.deleteQuietly(outputFile);
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.services.migration.generic.common.MultiProperties

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.