public Response addStringPropertyOnly(@PathParam("repositoryName") String repositoryName,
@PathParam("workspaceName") String workspaceName, @PathParam("userName") String userName,
@PathParam("password") String password, @PathParam("repoPath") String repoPath,
@PathParam("nodeName") String nodeName, @PathParam("size") Long size, @PathParam("iterations") Long iterations)
{
BandwidthAllocationTestCase bandwidthAllocationTestCase =
new BandwidthAllocationTestCase(repositoryService, repositoryName, workspaceName, userName, password);
StringBuffer sb = bandwidthAllocationTestCase.addStringPropertyOnly(repoPath, nodeName, size, iterations);
return Response.ok(sb.toString()).build();
}