mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
* refactor: Break out IUserServiceAdmin out of IUserService since admin methods don't need to be implemented on Grid hosted region servers
This commit is contained in:
@@ -40,8 +40,6 @@ namespace OpenSim.Framework.Communications
|
||||
/// <returns>A user profile. Returns null if no profile is found</returns>
|
||||
UserProfileData GetUserProfile(string firstName, string lastName);
|
||||
|
||||
//UserProfileData GetUserProfile(string name);
|
||||
|
||||
/// <summary>
|
||||
/// Loads a user profile from a database by UUID
|
||||
/// </summary>
|
||||
@@ -58,12 +56,6 @@ namespace OpenSim.Framework.Communications
|
||||
UserProfileData SetupMasterUser(string firstName, string lastName, string password);
|
||||
UserProfileData SetupMasterUser(UUID userId);
|
||||
|
||||
/// <summary>
|
||||
/// Add a new user profile
|
||||
/// </summary>
|
||||
/// <param name="user"></param>
|
||||
UUID AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY);
|
||||
|
||||
/// <summary>
|
||||
/// Update the user's profile.
|
||||
/// </summary>
|
||||
@@ -71,15 +63,6 @@ namespace OpenSim.Framework.Communications
|
||||
/// via a call to GetUserProfile().</param>
|
||||
/// <returns>true if the update could be applied, false if it could not be applied.</returns>
|
||||
bool UpdateUserProfile(UserProfileData data);
|
||||
|
||||
/// <summary>
|
||||
/// Reset a user password
|
||||
/// </summary>
|
||||
/// <param name="firstName"></param>
|
||||
/// <param name="lastName"></param>
|
||||
/// <param name="newPassword"></param>
|
||||
/// <returns>true if the update was successful, false otherwise</returns>
|
||||
bool ResetUserPassword(string firstName, string lastName, string newPassword);
|
||||
|
||||
/// <summary>
|
||||
/// Adds a new friend to the database for XUser
|
||||
|
||||
Reference in New Issue
Block a user