aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorMelanie Thielker2009-06-22 13:14:48 +0000
committerMelanie Thielker2009-06-22 13:14:48 +0000
commit77ebb7c9f30acaad1cc44a2bce799d05282a5f48 (patch)
treebe420f70ce4601ad6529c5537de3e1dfc3075811 /OpenSim/Services
parentCommitting the meat of the user server interface and the bones of the service... (diff)
downloadopensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.zip
opensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.tar.gz
opensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.tar.bz2
opensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.tar.xz
Committing RemoteUserServiceConnector out connector, local user service
connector and the glue code.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IUserService.cs5
-rw-r--r--OpenSim/Services/UserService/UserService.cs2
2 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs
index 823a86d..eb77bd4 100644
--- a/OpenSim/Services/Interfaces/IUserService.cs
+++ b/OpenSim/Services/Interfaces/IUserService.cs
@@ -35,7 +35,7 @@ namespace OpenSim.Services.Interfaces
35 public string FirstName; 35 public string FirstName;
36 public string LastName; 36 public string LastName;
37 public UUID UserID; 37 public UUID UserID;
38 public UUID scopeID; 38 public UUID ScopeID;
39 39
40 // For informational purposes only! 40 // For informational purposes only!
41 // 41 //
@@ -59,7 +59,7 @@ namespace OpenSim.Services.Interfaces
59 public string AccountType; 59 public string AccountType;
60 }; 60 };
61 61
62 public interface IUserService 62 public interface IUserDataService
63 { 63 {
64 UserData GetUserData(UUID scopeID, UUID userID); 64 UserData GetUserData(UUID scopeID, UUID userID);
65 UserData GetUserData(UUID scopeID, string FirstName, string LastName); 65 UserData GetUserData(UUID scopeID, string FirstName, string LastName);
@@ -71,7 +71,6 @@ namespace OpenSim.Services.Interfaces
71 71
72 // Returns the list of avatars that matches both the search 72 // Returns the list of avatars that matches both the search
73 // criterion and the scope ID passed 73 // criterion and the scope ID passed
74 // ONLY THE NAME, SCOPE ID and UUID will be filled in!
75 // 74 //
76 List<UserData> GetAvatarPickerData(UUID scopeID, string query); 75 List<UserData> GetAvatarPickerData(UUID scopeID, string query);
77 } 76 }
diff --git a/OpenSim/Services/UserService/UserService.cs b/OpenSim/Services/UserService/UserService.cs
index 3443643..5a6e5fb 100644
--- a/OpenSim/Services/UserService/UserService.cs
+++ b/OpenSim/Services/UserService/UserService.cs
@@ -35,7 +35,7 @@ using OpenMetaverse;
35 35
36namespace OpenSim.Services.UserService 36namespace OpenSim.Services.UserService
37{ 37{
38 public class UserService : UserServiceBase, IUserService 38 public class UserService : UserServiceBase, IUserDataService
39 { 39 {
40 public UserService(IConfigSource config) : base(config) 40 public UserService(IConfigSource config) : base(config)
41 { 41 {