aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IUserData.cs
diff options
context:
space:
mode:
authorSean Dague2008-05-02 12:35:24 +0000
committerSean Dague2008-05-02 12:35:24 +0000
commit4a8f43244160ca9324cc43a54ba64a51e10268bf (patch)
tree5035f70e843c1a6594193e0cd7db1c1d57b83528 /OpenSim/Framework/IUserData.cs
parentMinor formatting and documentation cleanup. (diff)
downloadopensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.zip
opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.gz
opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.bz2
opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.xz
minor refactoring. Change getName and GetVersion methods (yes the had different casings)
to Name and Version properties for the User stores.
Diffstat (limited to 'OpenSim/Framework/IUserData.cs')
-rw-r--r--OpenSim/Framework/IUserData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/IUserData.cs b/OpenSim/Framework/IUserData.cs
index cd29816..b75a229 100644
--- a/OpenSim/Framework/IUserData.cs
+++ b/OpenSim/Framework/IUserData.cs
@@ -162,13 +162,13 @@ namespace OpenSim.Framework
162 /// Returns the plugin version 162 /// Returns the plugin version
163 /// </summary> 163 /// </summary>
164 /// <returns>Plugin version in MAJOR.MINOR.REVISION.BUILD format</returns> 164 /// <returns>Plugin version in MAJOR.MINOR.REVISION.BUILD format</returns>
165 string GetVersion(); 165 string Version {get;}
166 166
167 /// <summary> 167 /// <summary>
168 /// Returns the plugin name 168 /// Returns the plugin name
169 /// </summary> 169 /// </summary>
170 /// <returns>Plugin name, eg MySQL User Provider</returns> 170 /// <returns>Plugin name, eg MySQL User Provider</returns>
171 string getName(); 171 string Name {get;}
172 172
173 /// <summary> 173 /// <summary>
174 /// Initialises the plugin (artificial constructor) 174 /// Initialises the plugin (artificial constructor)