public Asset loadAsset(String assetUniqueId) throws AssetNotFoundException {
String uniqueId = decodeUniqueId(assetUniqueId);
Path assetPath = getFileSystem(uniqueId).provider().getPath(URI.create(uniqueId));
Asset asset = buildAsset(assetPath, true);
return asset;
}