diff options
author | Diva Canto | 2009-12-29 13:39:21 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-29 13:39:21 -0800 |
commit | 2294683f0747fd5691437ed4e10a73ae45c7650c (patch) | |
tree | 2883b00d764d6631305fb3bef0157bbbe23de7e7 /OpenSim/Services/Connectors/User | |
parent | Polished the IUserService interface. (diff) | |
download | opensim-SC-2294683f0747fd5691437ed4e10a73ae45c7650c.zip opensim-SC-2294683f0747fd5691437ed4e10a73ae45c7650c.tar.gz opensim-SC-2294683f0747fd5691437ed4e10a73ae45c7650c.tar.bz2 opensim-SC-2294683f0747fd5691437ed4e10a73ae45c7650c.tar.xz |
Tighten up the IUserService interface again. No need for auth tokens at this level.
Diffstat (limited to 'OpenSim/Services/Connectors/User')
-rw-r--r-- | OpenSim/Services/Connectors/User/UserServiceConnector.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Connectors/User/UserServiceConnector.cs b/OpenSim/Services/Connectors/User/UserServiceConnector.cs index 2911e2f..0de8c1d 100644 --- a/OpenSim/Services/Connectors/User/UserServiceConnector.cs +++ b/OpenSim/Services/Connectors/User/UserServiceConnector.cs | |||
@@ -96,12 +96,12 @@ namespace OpenSim.Services.Connectors | |||
96 | return null; | 96 | return null; |
97 | } | 97 | } |
98 | 98 | ||
99 | public bool SetUserAccount(UserAccount data, UUID principalID, string token) | 99 | public bool SetUserAccount(UserAccount data) |
100 | { | 100 | { |
101 | return false; | 101 | return false; |
102 | } | 102 | } |
103 | 103 | ||
104 | public bool CreateUserAccount(UserAccount data, UUID principalID, string token) | 104 | public bool CreateUserAccount(UserAccount data) |
105 | { | 105 | { |
106 | return false; | 106 | return false; |
107 | } | 107 | } |