Fixed the naming mess around data connectors for simulation data

This commit is contained in:
John Hurliman
2010-09-11 20:43:06 -07:00
parent 47ac9f97b1
commit 109b517583
13 changed files with 23 additions and 23 deletions

View File

@@ -36,9 +36,9 @@ namespace OpenSim.Region.Framework
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
protected IRegionDataStore m_dataStore;
protected ISimulationDataStore m_dataStore;
public IRegionDataStore DataStore
public ISimulationDataStore DataStore
{
get { return m_dataStore; }
}
@@ -50,7 +50,7 @@ namespace OpenSim.Region.Framework
get { return m_estateDataStore; }
}
public StorageManager(IRegionDataStore storage)
public StorageManager(ISimulationDataStore storage)
{
m_dataStore = storage;
}
@@ -68,8 +68,8 @@ namespace OpenSim.Region.Framework
if (typeInterface != null)
{
IRegionDataStore plug =
(IRegionDataStore) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
ISimulationDataStore plug =
(ISimulationDataStore)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
plug.Initialise(connectionstring);
m_dataStore = plug;