@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();
}
/**