aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/AssetServer/Main.cs
diff options
context:
space:
mode:
authorMike Mazur2009-02-03 05:20:03 +0000
committerMike Mazur2009-02-03 05:20:03 +0000
commitf8e45e8e981bfd87f3765d7452046515e11a9345 (patch)
tree1633c1c52b5a42ce5da507faa84dca0d5e96726f /OpenSim/Grid/AssetServer/Main.cs
parent* Establish OnOarFileSaved EventManager event and subscribe to that instead o... (diff)
downloadopensim-SC_OLD-f8e45e8e981bfd87f3765d7452046515e11a9345.zip
opensim-SC_OLD-f8e45e8e981bfd87f3765d7452046515e11a9345.tar.gz
opensim-SC_OLD-f8e45e8e981bfd87f3765d7452046515e11a9345.tar.bz2
opensim-SC_OLD-f8e45e8e981bfd87f3765d7452046515e11a9345.tar.xz
Rename IAssetProviderPlugin to IAssetDataPlugin aligning with the other data plugins.
Diffstat (limited to 'OpenSim/Grid/AssetServer/Main.cs')
-rw-r--r--OpenSim/Grid/AssetServer/Main.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/AssetServer/Main.cs b/OpenSim/Grid/AssetServer/Main.cs
index 72300b5..b5c8df0 100644
--- a/OpenSim/Grid/AssetServer/Main.cs
+++ b/OpenSim/Grid/AssetServer/Main.cs
@@ -51,7 +51,7 @@ namespace OpenSim.Grid.AssetServer
51 // Temporarily hardcoded - should be a plugin 51 // Temporarily hardcoded - should be a plugin
52 protected IAssetLoader assetLoader = new AssetLoaderFileSystem(); 52 protected IAssetLoader assetLoader = new AssetLoaderFileSystem();
53 53
54 private IAssetProviderPlugin m_assetProvider; 54 private IAssetDataPlugin m_assetProvider;
55 55
56 public static void Main(string[] args) 56 public static void Main(string[] args)
57 { 57 {
@@ -111,10 +111,10 @@ namespace OpenSim.Grid.AssetServer
111 return null; 111 return null;
112 } 112 }
113 113
114 public IAssetProviderPlugin LoadDatabasePlugin(string provider, string connect) 114 public IAssetDataPlugin LoadDatabasePlugin(string provider, string connect)
115 { 115 {
116 PluginLoader<IAssetProviderPlugin> loader = 116 PluginLoader<IAssetDataPlugin> loader =
117 new PluginLoader<IAssetProviderPlugin> (new AssetDataInitialiser (connect)); 117 new PluginLoader<IAssetDataPlugin> (new AssetDataInitialiser (connect));
118 118
119 // loader will try to load all providers (MySQL, MSSQL, etc) 119 // loader will try to load all providers (MySQL, MSSQL, etc)
120 // unless it is constrainted to the correct "Provider" entry in the addin.xml 120 // unless it is constrainted to the correct "Provider" entry in the addin.xml