Polished the IUserService interface.

This commit is contained in:
Diva Canto
2009-12-29 13:27:21 -08:00
parent 8631cea215
commit 6eb5754f5a
5 changed files with 21 additions and 15 deletions

View File

@@ -168,6 +168,11 @@ namespace OpenSim.Data.MSSQL
return true;
}
public bool Store(UserAccountData data, UUID principalID, string token)
{
return false;
}
public bool SetDataItem(UUID principalID, string item, string value)
{
string sql = string.Format("update {0} set {1} = @{1} where UUID = @UUID", m_Realm, item);

View File

@@ -40,10 +40,10 @@ namespace OpenSim.Data.MySQL
public MySqlUserAccountData(string connectionString, string realm)
: base(connectionString, realm, "UserAccount")
{
public bool Store(UserAccountData data, UUID principalID, string token)
{
Store(data);
}
}
public bool Store(UserAccountData data, UUID principalID, string token)
{
return Store(data);
}
}
}