diff options
author | Justin Clark-Casey (justincc) | 2011-10-07 21:44:45 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-07 21:44:45 +0100 |
commit | b5e6209cfd1c0b655852cf40e99f50aa2db9d8fa (patch) | |
tree | afa21fb58dbf9b73913692c896f1b0fbb9ae0bfa | |
parent | Correct DeleteScriptsOnRestart to DeleteScriptsOnStartup in comments in OpenS... (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-b5e6209cfd1c0b655852cf40e99f50aa2db9d8fa.zip opensim-SC_OLD-b5e6209cfd1c0b655852cf40e99f50aa2db9d8fa.tar.gz opensim-SC_OLD-b5e6209cfd1c0b655852cf40e99f50aa2db9d8fa.tar.bz2 opensim-SC_OLD-b5e6209cfd1c0b655852cf40e99f50aa2db9d8fa.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
-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(); |