* @param id
* the ID of the file system.
* @return the list of exports for the file system.
*/
public List<FileSystemExportParam> getExports(URI id) {
FileSystemExportList response = client.get(FileSystemExportList.class, getExportsUrl(), id);
return defaultList(response.getExportList());
}