public HTTPResponse moveNode(String path, String destination) throws IOException, ModuleException
{
NVPair[] headers = new NVPair[2];
headers[0] =
new NVPair(ExtHttpHeaders.DESTINATION, this.getProtocol() + "://" + this.getHost() + ":" + this.getPort()
+ workspacePath + destination);
headers[1] = new NVPair(HttpHeaders.CONTENT_LENGTH, Integer.toString("".length()));
HTTPResponse response = ExtensionMethod("MOVE", workspacePath + path, "".getBytes(), headers);
response.getStatusCode();
return response;