aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorBlueWall2011-10-05 22:01:12 -0400
committerBlueWall2011-10-05 22:01:12 -0400
commit77b8fb0f86cd0342fa7331f04f56c0b5980290c2 (patch)
tree82d40a74d6e28bcc12a9ca1f594a4b7ca6259a2f /OpenSim/Services/Interfaces
parentInstead of adding stat agentMS in all kinds of places, calculate it instead i... (diff)
downloadopensim-SC_OLD-77b8fb0f86cd0342fa7331f04f56c0b5980290c2.zip
opensim-SC_OLD-77b8fb0f86cd0342fa7331f04f56c0b5980290c2.tar.gz
opensim-SC_OLD-77b8fb0f86cd0342fa7331f04f56c0b5980290c2.tar.bz2
opensim-SC_OLD-77b8fb0f86cd0342fa7331f04f56c0b5980290c2.tar.xz
Added back UserAccount that creates random UUID for new account.
This should fix recent issues with 3rd party apps that use the old interface w/o breaking the new one.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IUserAccountService.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs
index 20414f6..cadf297 100644
--- a/OpenSim/Services/Interfaces/IUserAccountService.cs
+++ b/OpenSim/Services/Interfaces/IUserAccountService.cs
@@ -44,6 +44,17 @@ namespace OpenSim.Services.Interfaces
44 PrincipalID = principalID; 44 PrincipalID = principalID;
45 } 45 }
46 46
47 public UserAccount(UUID scopeID, string firstName, string lastName, string email)
48 {
49 PrincipalID = UUID.Random();
50 ScopeID = scopeID;
51 FirstName = firstName;
52 LastName = lastName;
53 Email = email;
54 ServiceURLs = new Dictionary<string, object>();
55 Created = Util.UnixTimeSinceEpoch();
56 }
57
47 public UserAccount(UUID scopeID, UUID principalID, string firstName, string lastName, string email) 58 public UserAccount(UUID scopeID, UUID principalID, string firstName, string lastName, string email)
48 { 59 {
49 PrincipalID = principalID; 60 PrincipalID = principalID;