mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
Committing the meat of the user server interface and the bones of the service implementation
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user