* @param id
* the ID of the file system.
* @return the list of shares for the given file system.
*/
public List<SmbShareResponse> getShares(URI id) {
FileSystemShareList response = client.get(FileSystemShareList.class, getSharesUrl(), id);
return defaultList(response.getShareList());
}