diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/AssetInventoryServer/Interfaces.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/AssetInventoryServer/Interfaces.cs b/OpenSim/Grid/AssetInventoryServer/Interfaces.cs index 29428d4..053cacf 100644 --- a/OpenSim/Grid/AssetInventoryServer/Interfaces.cs +++ b/OpenSim/Grid/AssetInventoryServer/Interfaces.cs | |||
@@ -73,12 +73,12 @@ namespace OpenSim.Grid.AssetInventoryServer | |||
73 | 73 | ||
74 | public interface IAssetStorageProvider : IAssetInventoryServerPlugin | 74 | public interface IAssetStorageProvider : IAssetInventoryServerPlugin |
75 | { | 75 | { |
76 | BackendResponse TryFetchMetadata(UUID assetID, out Metadata metadata); | 76 | BackendResponse TryFetchMetadata(UUID assetID, out AssetMetadata metadata); |
77 | BackendResponse TryFetchData(UUID assetID, out byte[] assetData); | 77 | BackendResponse TryFetchData(UUID assetID, out byte[] assetData); |
78 | BackendResponse TryFetchDataMetadata(UUID assetID, out AssetBase asset); | 78 | BackendResponse TryFetchDataMetadata(UUID assetID, out AssetBase asset); |
79 | BackendResponse TryCreateAsset(Metadata metadata, byte[] assetData); | 79 | BackendResponse TryCreateAsset(AssetBase asset); |
80 | BackendResponse TryCreateAsset(Metadata metadata, byte[] assetData, out UUID assetID); | 80 | BackendResponse TryCreateAsset(AssetBase asset, out UUID assetID); |
81 | int ForEach(Action<Metadata> action, int start, int count); | 81 | int ForEach(Action<AssetMetadata> action, int start, int count); |
82 | } | 82 | } |
83 | 83 | ||
84 | public interface IInventoryStorageProvider : IAssetInventoryServerPlugin | 84 | public interface IInventoryStorageProvider : IAssetInventoryServerPlugin |