* Added SetPassword to IAuthenticationService.

* Added create user command to UserAccountService. Works.
* Deleted create user command from OpenSim.
This commit is contained in:
Diva Canto
2010-01-09 18:04:50 -08:00
parent 2639fa6ded
commit 96ecdcf9c5
7 changed files with 139 additions and 119 deletions

View File

@@ -65,6 +65,17 @@ namespace OpenSim.Services.Interfaces
//
bool Release(UUID principalID, string token);
//////////////////////////////////////////////////////
// SetPassword for a principal
//
// This method exists for the service, but may or may not
// be served remotely. That is, the authentication
// handlers may not include one handler for this,
// because it's a bit risky. Such handlers require
// authentication/authorization.
//
bool SetPassword(UUID principalID, string passwd);
//////////////////////////////////////////////////////
// Grid
//