From a9b3ab0c85b567552f31490126a1ff5479352413 Mon Sep 17 00:00:00 2001
From: BlueWall
Date: Fri, 7 Oct 2011 16:34:33 -0400
Subject: Add note to docs
This method is used by externasl/3rd party management tools to
create users and they depend on us to generate the UUID.
---
OpenSim/Services/Interfaces/IUserAccountService.cs | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
(limited to 'OpenSim')
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs
index cadf297..6cc8eb8 100644
--- a/OpenSim/Services/Interfaces/IUserAccountService.cs
+++ b/OpenSim/Services/Interfaces/IUserAccountService.cs
@@ -44,6 +44,23 @@ namespace OpenSim.Services.Interfaces
PrincipalID = principalID;
}
+ ///
+ /// Initializes a new instance of the class.
+ /// This method is used by externasl/3rd party management applications that need us to create a
+ /// random UUID for the new user.
+ ///
+ ///
+ /// Scope I.
+ ///
+ ///
+ /// First name.
+ ///
+ ///
+ /// Last name.
+ ///
+ ///
+ /// Email.
+ ///
public UserAccount(UUID scopeID, string firstName, string lastName, string email)
{
PrincipalID = UUID.Random();
--
cgit v1.1