Tighten up the IUserService interface again. No need for auth tokens at this level.

slimupdates
Diva Canto 2009-12-29 13:39:21 -08:00
parent 6eb5754f5a
commit 2294683f07
3 changed files with 7 additions and 8 deletions

View File

@ -96,12 +96,12 @@ namespace OpenSim.Services.Connectors
return null; return null;
} }
public bool SetUserAccount(UserAccount data, UUID principalID, string token) public bool SetUserAccount(UserAccount data)
{ {
return false; return false;
} }
public bool CreateUserAccount(UserAccount data, UUID principalID, string token) public bool CreateUserAccount(UserAccount data)
{ {
return false; return false;
} }

View File

@ -97,9 +97,9 @@ namespace OpenSim.Services.Interfaces
// Update all updatable fields // Update all updatable fields
// //
bool SetUserAccount(UserAccount data, UUID PrincipalID, string token); bool SetUserAccount(UserAccount data);
// Creates a user data record // Creates a user data record
bool CreateUserAccount(UserAccount data, UUID PrincipalID, string token); bool CreateUserAccount(UserAccount data);
} }
} }

View File

@ -57,18 +57,17 @@ namespace OpenSim.Services.UserAccountService
return null; return null;
} }
public bool SetUserAccount(UserAccount data, UUID principalID, string token) public bool SetUserAccount(UserAccount data)
{ {
return false; return false;
} }
public bool CreateUserAccount(UserAccount data, UUID principalID, string token) public bool CreateUserAccount(UserAccount data)
{ {
return false; return false;
} }
public List<UserAccount> GetUserAccounts(UUID scopeID, public List<UserAccount> GetUserAccounts(UUID scopeID, string query)
string query)
{ {
return null; return null;
} }