diff options
author | Melanie Thielker | 2009-06-22 13:14:48 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-06-22 13:14:48 +0000 |
commit | 77ebb7c9f30acaad1cc44a2bce799d05282a5f48 (patch) | |
tree | be420f70ce4601ad6529c5537de3e1dfc3075811 /OpenSim/Services/Interfaces/IUserService.cs | |
parent | Committing the meat of the user server interface and the bones of the service... (diff) | |
download | opensim-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 'OpenSim/Services/Interfaces/IUserService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserService.cs | 5 |
1 files changed, 2 insertions, 3 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 | } |