diff options
author | Diva Canto | 2010-03-05 21:36:45 -0800 |
---|---|---|
committer | Diva Canto | 2010-03-05 21:36:45 -0800 |
commit | 5171464ac199f958a9a8a11664958260a88e863d (patch) | |
tree | 97f70afe241e8761d496d5f54acb5e5eae8d7495 /OpenSim/Data/IGridUserData.cs | |
parent | refactor: Move DetachSingleAttachmentToInv to region module (diff) | |
download | opensim-SC-5171464ac199f958a9a8a11664958260a88e863d.zip opensim-SC-5171464ac199f958a9a8a11664958260a88e863d.tar.gz opensim-SC-5171464ac199f958a9a8a11664958260a88e863d.tar.bz2 opensim-SC-5171464ac199f958a9a8a11664958260a88e863d.tar.xz |
Justin, I must have been dyslexic when I wrote UserGridService as the name for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IGridUserData.cs (renamed from OpenSim/Data/IUserGridData.cs) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/IUserGridData.cs b/OpenSim/Data/IGridUserData.cs index 6f7467e..abd2cef 100644 --- a/OpenSim/Data/IUserGridData.cs +++ b/OpenSim/Data/IGridUserData.cs | |||
@@ -33,7 +33,7 @@ using OpenSim.Framework; | |||
33 | namespace OpenSim.Data | 33 | namespace OpenSim.Data |
34 | { | 34 | { |
35 | // This MUST be a ref type! | 35 | // This MUST be a ref type! |
36 | public class UserGridData | 36 | public class GridUserData |
37 | { | 37 | { |
38 | public string UserID; | 38 | public string UserID; |
39 | public Dictionary<string, string> Data; | 39 | public Dictionary<string, string> Data; |
@@ -42,9 +42,9 @@ namespace OpenSim.Data | |||
42 | /// <summary> | 42 | /// <summary> |
43 | /// An interface for connecting to the user grid datastore | 43 | /// An interface for connecting to the user grid datastore |
44 | /// </summary> | 44 | /// </summary> |
45 | public interface IUserGridData | 45 | public interface IGridUserData |
46 | { | 46 | { |
47 | UserGridData GetUserGridData(string userID); | 47 | GridUserData GetGridUserData(string userID); |
48 | bool StoreUserGridData(UserGridData data); | 48 | bool StoreGridUserData(GridUserData data); |
49 | } | 49 | } |
50 | } \ No newline at end of file | 50 | } \ No newline at end of file |