Give the new user tables the once-over. Strip the current set of methods

from IUserAccountService, we need to define what goes in there. Change
the handler to the generic handler. Adjust migrations, add index
This commit is contained in:
Melanie
2009-12-29 18:31:27 +00:00
parent e9df86a6d6
commit 18ca978b81
5 changed files with 20 additions and 145 deletions

View File

@@ -36,6 +36,8 @@ namespace OpenSim.Data
{
public UUID PrincipalID;
public UUID ScopeID;
public string FirstName;
public string LastName;
public Dictionary<string, object> Data;
}
@@ -44,12 +46,6 @@ namespace OpenSim.Data
/// </summary>
public interface IUserAccountData
{
UserAccountData Get(UUID principalID, UUID ScopeID);
List<UserAccountData> Query(UUID principalID, UUID ScopeID, string query);
bool Store(UserAccountData data);
bool SetDataItem(UUID principalID, string item, string value);
}
}