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/Connectors/User | |
parent | Change the interface a bit before someone depends on it's current form (diff) | |
download | opensim-SC-6eb5754f5a4b9707f43572ce1e5743054d784818.zip opensim-SC-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.gz opensim-SC-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.bz2 opensim-SC-6eb5754f5a4b9707f43572ce1e5743054d784818.tar.xz |
Polished the IUserService interface.
Diffstat (limited to 'OpenSim/Services/Connectors/User')
-rw-r--r-- | OpenSim/Services/Connectors/User/UserServiceConnector.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Services/Connectors/User/UserServiceConnector.cs b/OpenSim/Services/Connectors/User/UserServiceConnector.cs index 683990f..2911e2f 100644 --- a/OpenSim/Services/Connectors/User/UserServiceConnector.cs +++ b/OpenSim/Services/Connectors/User/UserServiceConnector.cs | |||
@@ -86,14 +86,14 @@ namespace OpenSim.Services.Connectors | |||
86 | return null; | 86 | return null; |
87 | } | 87 | } |
88 | 88 | ||
89 | public UserAccount GetUserAccount(UUID scopeID, UUID userID) | 89 | public UserAccount GetUserAccount(UUID scopeID, string email) |
90 | { | 90 | { |
91 | return null; | 91 | return null; |
92 | } | 92 | } |
93 | 93 | ||
94 | public bool SetHomePosition(UserAccount data, UUID regionID, UUID regionSecret) | 94 | public UserAccount GetUserAccount(UUID scopeID, UUID userID) |
95 | { | 95 | { |
96 | return false; | 96 | return null; |
97 | } | 97 | } |
98 | 98 | ||
99 | public bool SetUserAccount(UserAccount data, UUID principalID, string token) | 99 | public bool SetUserAccount(UserAccount data, UUID principalID, string token) |
@@ -106,7 +106,7 @@ namespace OpenSim.Services.Connectors | |||
106 | return false; | 106 | return false; |
107 | } | 107 | } |
108 | 108 | ||
109 | public List<UserAccount> GetUserAccount(UUID scopeID, string query) | 109 | public List<UserAccount> GetUserAccounts(UUID scopeID, string query) |
110 | { | 110 | { |
111 | return null; | 111 | return null; |
112 | } | 112 | } |