Committing the meat of the user server interface and the bones of the service implementation

This commit is contained in:
Melanie Thielker
2009-06-22 12:18:04 +00:00
parent 65d48a5e60
commit 044446821b
4 changed files with 92 additions and 11 deletions

View File

@@ -30,6 +30,8 @@ using System.Reflection;
using Nini.Config;
using OpenSim.Data;
using OpenSim.Services.Interfaces;
using System.Collections.Generic;
using OpenMetaverse;
namespace OpenSim.Services.UserService
{
@@ -38,5 +40,27 @@ namespace OpenSim.Services.UserService
public UserService(IConfigSource config) : base(config)
{
}
public UserData GetUserData(UUID scopeID, string firstName,
string lastName)
{
return null;
}
public UserData GetUserData(UUID scopeID, UUID userID)
{
return null;
}
public bool SetUserData(UserData data)
{
return false;
}
public List<UserData> GetAvatarPickerData(UUID scopeID,
string query)
{
return null;
}
}
}