aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorMelanie2011-10-12 07:06:59 +0100
committerMelanie2011-10-12 07:06:59 +0100
commit492a50d6f71fece278faeec296916c8ade29839e (patch)
treebca6b30c83f0c5a9e4b5f53821856a0933dbce04 /OpenSim/Services
parentMerge commit 'e3c522e2118108a01d2c6f77c8065224d53d6bb9' into bigmerge (diff)
parentAdd note to docs (diff)
downloadopensim-SC_OLD-492a50d6f71fece278faeec296916c8ade29839e.zip
opensim-SC_OLD-492a50d6f71fece278faeec296916c8ade29839e.tar.gz
opensim-SC_OLD-492a50d6f71fece278faeec296916c8ade29839e.tar.bz2
opensim-SC_OLD-492a50d6f71fece278faeec296916c8ade29839e.tar.xz
Merge commit 'a9b3ab0c85b567552f31490126a1ff5479352413' into bigmerge
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/Interfaces/IUserAccountService.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs
index d132a4d..d0fddee 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();