diff options
author | Dr Scofield | 2008-07-04 11:13:25 +0000 |
---|---|---|
committer | Dr Scofield | 2008-07-04 11:13:25 +0000 |
commit | 6265a09ff90d1de4a09b41fbdcb99a1eb2ebc2d4 (patch) | |
tree | 9a70bf001c72897fac37d96812d2e66681c456b9 /OpenSim/Framework/Communications/IUserService.cs | |
parent | mini-warnings-safari, plus cleanup of IUserServices method naming. (diff) | |
download | opensim-SC_OLD-6265a09ff90d1de4a09b41fbdcb99a1eb2ebc2d4.zip opensim-SC_OLD-6265a09ff90d1de4a09b41fbdcb99a1eb2ebc2d4.tar.gz opensim-SC_OLD-6265a09ff90d1de4a09b41fbdcb99a1eb2ebc2d4.tar.bz2 opensim-SC_OLD-6265a09ff90d1de4a09b41fbdcb99a1eb2ebc2d4.tar.xz |
Renaming UserManagerBase.SetUserProfile(UserProfileData) to
UserManager.UpdateUserProfile(UserProfileData).
Adding UpdateUserProfile(UserProfileData) to IUserService interface.
Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide
a remote update capability.
Diffstat (limited to 'OpenSim/Framework/Communications/IUserService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IUserService.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index 6ad72c0..c1ae0e2 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs | |||
@@ -64,6 +64,13 @@ namespace OpenSim.Framework.Communications | |||
64 | /// <param name="user"></param> | 64 | /// <param name="user"></param> |
65 | LLUUID AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY); | 65 | LLUUID AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY); |
66 | 66 | ||
67 | /// <summary> | ||
68 | /// Update the user's profile. | ||
69 | /// </summary> | ||
70 | /// <param name="data">UserProfileData object with updated data. Should be obtained | ||
71 | /// via a call to GetUserProfile().</param> | ||
72 | /// <returns>true if the update could be applied, false if it could not be applied.</returns> | ||
73 | bool UpdateUserProfile(UserProfileData data); | ||
67 | 74 | ||
68 | /// <summary> | 75 | /// <summary> |
69 | /// Adds a new friend to the database for XUser | 76 | /// Adds a new friend to the database for XUser |