Package eu.planets_project.pp.plato.services.crib_integration.tu_client

Examples of eu.planets_project.pp.plato.services.crib_integration.tu_client.MigrationPath


                 */
                PreservationActionDefinition action;
               
                MigrationPath[] paths = serviceRegistryService.findall_migrationPaths(cribID, targetFormat);
                for (int j = 0; j < paths.length; j++) {
                    MigrationPath path = paths[j];
                    action = new PreservationActionDefinition();
                   
                    action.setShortname(getShortnameFromPath(path, shortnames));
                    String urls[] = path.getAccessPoints();
                    LinkedList<Parameter> params = new LinkedList<Parameter>();
                    for (int k = 0; k < urls.length; k++) {
                        Parameter param = new Parameter();
                        param.setName("crib::location"+k);
                        param.setValue(urls[k]);
View Full Code Here

TOP

Related Classes of eu.planets_project.pp.plato.services.crib_integration.tu_client.MigrationPath

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.