* @param storageSystemId
* the ID of the storage system.
* @return the list of unmanaged file system references.
*/
public List<RelatedResourceRep> listByStorageSystem(URI storageSystemId) {
UnManagedFileSystemList response = client.get(UnManagedFileSystemList.class,
PathConstants.UNMANAGED_FILESYSTEM_BY_STORAGE_SYSTEM_URL, storageSystemId);
return ResourceUtils.defaultList(response.getUnManagedFileSystem());
}