@Path("/{repositoryName}/{workspaceName}/{userName}/{password}/{id}/disconnectClusterNodeById")
public Response disconnectClusterNodeById(@PathParam("repositoryName") String repositoryName,
@PathParam("workspaceName") String workspaceName, @PathParam("userName") String userName,
@PathParam("password") String password, @PathParam("id") Integer id)
{
BasePriorityTestCase priorityTestCase =
new BasePriorityTestCase(repositoryService, repositoryName, workspaceName, userName, password);
StringBuffer sb = priorityTestCase.disconnectClusterNode(id);
return Response.ok(sb.toString()).build();
}