*/
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]);