ResponseBuilder rb = Response.status(Response.Status.BAD_REQUEST);
return rb.build();
}
// Form the root path of the wfs: "recordings/<name>/world-wfs"
WorldRoot worldRoot = new WorldRoot(recording.getRootPath());
// Formulate the response and return the world root object
ResponseBuilder rb = Response.ok(worldRoot);
return rb.build();
}