aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorDiva Canto2010-03-05 21:36:45 -0800
committerDiva Canto2010-03-05 21:36:45 -0800
commit5171464ac199f958a9a8a11664958260a88e863d (patch)
tree97f70afe241e8761d496d5f54acb5e5eae8d7495 /OpenSim/Services/Interfaces
parentrefactor: Move DetachSingleAttachmentToInv to region module (diff)
downloadopensim-SC_OLD-5171464ac199f958a9a8a11664958260a88e863d.zip
opensim-SC_OLD-5171464ac199f958a9a8a11664958260a88e863d.tar.gz
opensim-SC_OLD-5171464ac199f958a9a8a11664958260a88e863d.tar.bz2
opensim-SC_OLD-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 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IGridUserService.cs (renamed from OpenSim/Services/Interfaces/IUserGridService.cs)12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Services/Interfaces/IUserGridService.cs b/OpenSim/Services/Interfaces/IGridUserService.cs
index 50134e0..a7c2c6f 100644
--- a/OpenSim/Services/Interfaces/IUserGridService.cs
+++ b/OpenSim/Services/Interfaces/IGridUserService.cs
@@ -34,16 +34,16 @@ namespace OpenSim.Services.Interfaces
34 /// <summary> 34 /// <summary>
35 /// Records user information specific to a grid but which is not part of a user's account. 35 /// Records user information specific to a grid but which is not part of a user's account.
36 /// </summary> 36 /// </summary>
37 public class UserGridInfo 37 public class GridUserInfo
38 { 38 {
39 public string UserID; 39 public string UserID;
40 public UUID HomeRegionID; 40 public UUID HomeRegionID;
41 public Vector3 HomePosition; 41 public Vector3 HomePosition;
42 public Vector3 HomeLookAt; 42 public Vector3 HomeLookAt;
43 43
44 public UserGridInfo() {} 44 public GridUserInfo() {}
45 45
46 public UserGridInfo(Dictionary<string, object> kvp) 46 public GridUserInfo(Dictionary<string, object> kvp)
47 { 47 {
48 if (kvp.ContainsKey("UserID")) 48 if (kvp.ContainsKey("UserID"))
49 UserID = kvp["UserID"].ToString(); 49 UserID = kvp["UserID"].ToString();
@@ -67,9 +67,9 @@ namespace OpenSim.Services.Interfaces
67 } 67 }
68 } 68 }
69 69
70 public interface IUserGridService 70 public interface IGridUserService
71 { 71 {
72 UserGridInfo GetUserGridInfo(string userID); 72 GridUserInfo GetGridUserInfo(string userID);
73 bool StoreUserGridInfo(UserGridInfo info); 73 bool StoreGridUserInfo(GridUserInfo info);
74 } 74 }
75} \ No newline at end of file 75} \ No newline at end of file