aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserService.cs
diff options
context:
space:
mode:
authorDiva Canto2009-12-29 15:58:40 -0800
committerDiva Canto2009-12-29 15:58:40 -0800
commitb4483df2701483aabd43fc7d03ebd74770d70170 (patch)
treed36e88b1409e438be222e0a994b6ca563fe26850 /OpenSim/Services/Interfaces/IUserService.cs
parentTighten up the IUserService interface again. No need for auth tokens at this ... (diff)
downloadopensim-SC_OLD-b4483df2701483aabd43fc7d03ebd74770d70170.zip
opensim-SC_OLD-b4483df2701483aabd43fc7d03ebd74770d70170.tar.gz
opensim-SC_OLD-b4483df2701483aabd43fc7d03ebd74770d70170.tar.bz2
opensim-SC_OLD-b4483df2701483aabd43fc7d03ebd74770d70170.tar.xz
* All modules and connectors for user account service are in place. Untested.
* Cleaned up a few things on presence connectors
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IUserService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs
index 1089c6c..e4e4bec 100644
--- a/OpenSim/Services/Interfaces/IUserService.cs
+++ b/OpenSim/Services/Interfaces/IUserService.cs
@@ -48,7 +48,7 @@ namespace OpenSim.Services.Interfaces
48 public UUID UserID; 48 public UUID UserID;
49 public UUID ScopeID; 49 public UUID ScopeID;
50 50
51 public Dictionary<string, string> ServiceURLs; 51 public Dictionary<string, object> ServiceURLs;
52 52
53 public DateTime Created; 53 public DateTime Created;
54 54
@@ -67,7 +67,7 @@ namespace OpenSim.Services.Interfaces
67 if (kvp.ContainsKey("Created")) 67 if (kvp.ContainsKey("Created"))
68 DateTime.TryParse(kvp["Created"].ToString(), out Created); 68 DateTime.TryParse(kvp["Created"].ToString(), out Created);
69 if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null && (kvp["ServiceURLs"] is Dictionary<string, string>)) 69 if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null && (kvp["ServiceURLs"] is Dictionary<string, string>))
70 ServiceURLs = (Dictionary<string, string>)kvp["ServiceURLs"]; 70 ServiceURLs = (Dictionary<string, object>)kvp["ServiceURLs"];
71 } 71 }
72 72
73 public Dictionary<string, object> ToKeyValuePairs() 73 public Dictionary<string, object> ToKeyValuePairs()