List<WFSRoot> rootList = wfsm.getWFSRoots();
List<String> rootNames = new ArrayList<String>(rootList.size());
for (WFSRoot root : rootList) {
rootNames.add(root.getRootPath());
}
WorldRootList wfsRoots = new WorldRootList(rootNames.toArray(new String[0]));
/* Send the serialized cell names to the client */
ResponseBuilder rb = Response.ok(wfsRoots);
return rb.build();
}