/* * RepositoryFileMoveCall.java * * Copyright (C) 2010-2016, Microsoft Corporation * * This program is licensed to you under the terms of Version 2.0 of the * Apache License. This program is distributed WITHOUT * ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT, * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the * Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0) for more details. * */ package com.revo.deployr.client.call.repository; import com.revo.deployr.client.call.AbstractCall; import com.revo.deployr.client.core.RCoreResult; import com.revo.deployr.client.core.REndpoints; import java.util.List; import java.util.Map; import java.util.concurrent.Callable; /** * Provides support for DeployR API call: /r/repository/file/move. * <p/> * Simply construct an instance of this call and pass it on the * execute() method of your {@link com.revo.deployr.client.RClient}. */ public class RepositoryFileMoveCall extends AbstractCall implements Callable<RCoreResult> { private final String API = REndpoints.RREPOSITORYFILEMOVE; public RepositoryFileMoveCall(String destination, List<Map<String, String>> file) { httpParams.put("destination", destination); String fileNames = null; String dirNames = null; for (int i = 0; i < file.size(); i++) { Map<String, String> fileMap = (Map<String, String>) file.get(i); if (fileNames != null) { fileNames = fileNames + "," + fileMap.get("filename"); dirNames = dirNames + "," + fileMap.get("directory"); } else { fileNames = fileMap.get("filename"); dirNames = fileMap.get("directory"); } } httpParams.put("filename", fileNames); httpParams.put("directory", dirNames); httpParams.put("format", "json"); } /** * Internal use only, to execute call use RClient.execute(). */ public RCoreResult call() { return makePostRequest(API); } }