diff options
author | BlueWall | 2011-10-07 16:34:33 -0400 |
---|---|---|
committer | BlueWall | 2011-10-07 16:34:33 -0400 |
commit | a9b3ab0c85b567552f31490126a1ff5479352413 (patch) | |
tree | 4257067536c818ecb4824be09effd1c5db90a34b /OpenSim/Services/Interfaces | |
parent | Fixed line endings from previous commit (diff) | |
download | opensim-SC_OLD-a9b3ab0c85b567552f31490126a1ff5479352413.zip opensim-SC_OLD-a9b3ab0c85b567552f31490126a1ff5479352413.tar.gz opensim-SC_OLD-a9b3ab0c85b567552f31490126a1ff5479352413.tar.bz2 opensim-SC_OLD-a9b3ab0c85b567552f31490126a1ff5479352413.tar.xz |
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.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserAccountService.cs | 17 |
1 files changed, 17 insertions, 0 deletions
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 | |||
44 | PrincipalID = principalID; | 44 | PrincipalID = principalID; |
45 | } | 45 | } |
46 | 46 | ||
47 | /// <summary> | ||
48 | /// Initializes a new instance of the <see cref="OpenSim.Services.Interfaces.UserAccount"/> class. | ||
49 | /// This method is used by externasl/3rd party management applications that need us to create a | ||
50 | /// random UUID for the new user. | ||
51 | /// </summary> | ||
52 | /// <param name='scopeID'> | ||
53 | /// Scope I. | ||
54 | /// </param> | ||
55 | /// <param name='firstName'> | ||
56 | /// First name. | ||
57 | /// </param> | ||
58 | /// <param name='lastName'> | ||
59 | /// Last name. | ||
60 | /// </param> | ||
61 | /// <param name='email'> | ||
62 | /// Email. | ||
63 | /// </param> | ||
47 | public UserAccount(UUID scopeID, string firstName, string lastName, string email) | 64 | public UserAccount(UUID scopeID, string firstName, string lastName, string email) |
48 | { | 65 | { |
49 | PrincipalID = UUID.Random(); | 66 | PrincipalID = UUID.Random(); |