return storagePool;
}
public static RemoteServiceDto remoteServicePut() {
RemoteServiceDto remoteService = remoteServicePost();
remoteService.setId(1);
remoteService.addLink(new RESTLink("check",
"http://localhost/api/admin/datacenters/1/remoteservices/nodecollector/action/check"));
remoteService.addLink(new RESTLink("datacenter", "http://localhost/api/admin/datacenters/1"));
remoteService.addLink(new RESTLink("edit",
"http://localhost/api/admin/datacenters/1/remoteservices/nodecollector"));
return remoteService;
}