public ResourcePoolRead get(String id) {
    id = CommonUtil.encode(id);
    final String path = Constants.REST_PATH_RESOURCEPOOL;
    final HttpMethod httpverb = HttpMethod.GET;

    return restClient.getObject(id, ResourcePoolRead.class, path, httpverb, false);
  }
  public void delete(String id) {
    id = CommonUtil.encode(id);
    final String path = Constants.REST_PATH_RESOURCEPOOL;
    final HttpMethod httpverb = HttpMethod.DELETE;

    restClient.deleteObject(id, path, httpverb);
  }