diff options
author | Teravus Ovares | 2008-01-09 18:57:03 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-01-09 18:57:03 +0000 |
commit | 49fe4eb3cdf4b5cb11e5fe0980bb7c3a3d47b6ea (patch) | |
tree | 37de8fc8d0f2507fd892b6f24ae6b5899a0f0bd7 /OpenSim/Framework/Communications/UserManagerBase.cs | |
parent | default to OpenSim.Framework.Data.SQLite which is the new storage (diff) | |
download | opensim-SC_OLD-49fe4eb3cdf4b5cb11e5fe0980bb7c3a3d47b6ea.zip opensim-SC_OLD-49fe4eb3cdf4b5cb11e5fe0980bb7c3a3d47b6ea.tar.gz opensim-SC_OLD-49fe4eb3cdf4b5cb11e5fe0980bb7c3a3d47b6ea.tar.bz2 opensim-SC_OLD-49fe4eb3cdf4b5cb11e5fe0980bb7c3a3d47b6ea.tar.xz |
* This may be broken.. it hasn't been tested, however I wanted to get the last database changes in before sdauge changes them significantly.
Diffstat (limited to 'OpenSim/Framework/Communications/UserManagerBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index bea56ea..2d72629 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -222,6 +222,23 @@ namespace OpenSim.Framework.UserManagement | |||
222 | 222 | ||
223 | } | 223 | } |
224 | 224 | ||
225 | public void StoreWebLoginKey(LLUUID agentID, LLUUID webLoginKey) | ||
226 | { | ||
227 | |||
228 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) | ||
229 | { | ||
230 | try | ||
231 | { | ||
232 | plugin.Value.StoreWebLoginKey(agentID, webLoginKey); | ||
233 | } | ||
234 | catch (Exception e) | ||
235 | { | ||
236 | MainLog.Instance.Verbose("USERSTORAGE", | ||
237 | "Unable to Store WebLoginKey via " + plugin.Key + "(" + e.ToString() + ")"); | ||
238 | } | ||
239 | } | ||
240 | } | ||
241 | |||
225 | public void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms) | 242 | public void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms) |
226 | { | 243 | { |
227 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) | 244 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) |