minor refactoring. Change getName and GetVersion methods (yes the had different casings)

to Name and Version properties for the User stores.
This commit is contained in:
Sean Dague
2008-05-02 12:35:24 +00:00
parent b1aacfe0d4
commit 4a8f432441
7 changed files with 19 additions and 30 deletions

View File

@@ -81,7 +81,7 @@ namespace OpenSim.Framework.Communications
public void AddPlugin(IUserData plug)
{
plug.Initialise();
_plugins.Add(plug.getName(), plug);
_plugins.Add(plug.Name, plug);
m_log.Info("[USERSTORAGE]: Added IUserData Interface");
}

View File

@@ -162,13 +162,13 @@ namespace OpenSim.Framework
/// Returns the plugin version
/// </summary>
/// <returns>Plugin version in MAJOR.MINOR.REVISION.BUILD format</returns>
string GetVersion();
string Version {get;}
/// <summary>
/// Returns the plugin name
/// </summary>
/// <returns>Plugin name, eg MySQL User Provider</returns>
string getName();
string Name {get;}
/// <summary>
/// Initialises the plugin (artificial constructor)