public @ResponseBody
JSONArr list(@PathVariable String wsName){
JSONArr arr = new JSONArr();
Catalog cat = geoServer.getCatalog();
for (StoreInfo store : cat.getStoresByWorkspace(wsName, StoreInfo.class)) {
store(arr.addObject(), store);
}
return arr;
}
@RequestMapping(value = "/{wsName}/{name}", method = RequestMethod.GET)