diff options
author | Diva Canto | 2009-12-29 13:27:21 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-29 13:27:21 -0800 |
commit | 6eb5754f5a4b9707f43572ce1e5743054d784818 (patch) | |
tree | 4112cfaa1bd0673752b1c304043e988a3ab3d7c6 /OpenSim/Services/Interfaces | |
parent | Change the interface a bit before someone depends on it's current form (diff) | |
download | opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.zip opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.gz opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.bz2 opensim-SC_OLD-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.xz |
Polished the IUserService interface.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs index 8279b9a..b6f8774 100644 --- a/OpenSim/Services/Interfaces/IUserService.cs +++ b/OpenSim/Services/Interfaces/IUserService.cs | |||
@@ -89,10 +89,11 @@ namespace OpenSim.Services.Interfaces | |||
89 | { | 89 | { |
90 | UserAccount GetUserAccount(UUID scopeID, UUID userID); | 90 | UserAccount GetUserAccount(UUID scopeID, UUID userID); |
91 | UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName); | 91 | UserAccount GetUserAccount(UUID scopeID, string FirstName, string LastName); |
92 | UserAccount GetUserAccount(UUID scopeID, string Email); | ||
92 | // Returns the list of avatars that matches both the search | 93 | // Returns the list of avatars that matches both the search |
93 | // criterion and the scope ID passed | 94 | // criterion and the scope ID passed |
94 | // | 95 | // |
95 | List<UserAccount> GetUserAccount(UUID scopeID, string query); | 96 | List<UserAccount> GetUserAccounts(UUID scopeID, string query); |
96 | 97 | ||
97 | // Update all updatable fields | 98 | // Update all updatable fields |
98 | // | 99 | // |