From 96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 9 Jan 2010 18:04:50 -0800 Subject: * Added SetPassword to IAuthenticationService. * Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim. --- OpenSim/Services/Interfaces/IAuthenticationService.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'OpenSim/Services/Interfaces') diff --git a/OpenSim/Services/Interfaces/IAuthenticationService.cs b/OpenSim/Services/Interfaces/IAuthenticationService.cs index 9225773..9de261b 100644 --- a/OpenSim/Services/Interfaces/IAuthenticationService.cs +++ b/OpenSim/Services/Interfaces/IAuthenticationService.cs @@ -66,6 +66,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 // // We no longer need a shared secret between grid -- cgit v1.1