diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/AssetInventoryServer/Extensions/SimpleStorage.cs (renamed from OpenSim/Grid/NewAssetServer/Extensions/SimpleStorage.cs) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/NewAssetServer/Extensions/SimpleStorage.cs b/OpenSim/Grid/AssetInventoryServer/Extensions/SimpleStorage.cs index 1c0fe33..c9cf138 100644 --- a/OpenSim/Grid/NewAssetServer/Extensions/SimpleStorage.cs +++ b/OpenSim/Grid/AssetInventoryServer/Extensions/SimpleStorage.cs | |||
@@ -35,15 +35,15 @@ using ExtensionLoader; | |||
35 | using OpenMetaverse; | 35 | using OpenMetaverse; |
36 | using OpenMetaverse.StructuredData; | 36 | using OpenMetaverse.StructuredData; |
37 | 37 | ||
38 | namespace AssetServer.Extensions | 38 | namespace OpenSim.Grid.AssetInventoryServer.Extensions |
39 | { | 39 | { |
40 | public class SimpleStorage : IExtension<AssetServer>, IStorageProvider | 40 | public class SimpleStorage : IExtension<AssetInventoryServer>, IStorageProvider |
41 | { | 41 | { |
42 | const string EXTENSION_NAME = ""; // Used in metrics reporting | 42 | const string EXTENSION_NAME = ""; // Used in metrics reporting |
43 | const string DEFAULT_DATA_DIR = "SimpleAssets"; | 43 | const string DEFAULT_DATA_DIR = "SimpleAssets"; |
44 | const string TEMP_DATA_DIR = "SimpleAssetsTemp"; | 44 | const string TEMP_DATA_DIR = "SimpleAssetsTemp"; |
45 | 45 | ||
46 | AssetServer server; | 46 | AssetInventoryServer server; |
47 | Dictionary<UUID, Metadata> metadataStorage; | 47 | Dictionary<UUID, Metadata> metadataStorage; |
48 | Dictionary<UUID, string> filenames; | 48 | Dictionary<UUID, string> filenames; |
49 | 49 | ||
@@ -53,7 +53,7 @@ namespace AssetServer.Extensions | |||
53 | 53 | ||
54 | #region Required Interfaces | 54 | #region Required Interfaces |
55 | 55 | ||
56 | public void Start(AssetServer server) | 56 | public void Start(AssetInventoryServer server) |
57 | { | 57 | { |
58 | this.server = server; | 58 | this.server = server; |
59 | metadataStorage = new Dictionary<UUID, Metadata>(); | 59 | metadataStorage = new Dictionary<UUID, Metadata>(); |