mirror of
https://github.com/opensim/opensim.git
synced 2026-06-24 23:35:47 +08:00
*LoginService is now only used in LocalCommunications and not as a interface in RegionCommunications
37 lines
945 B
C#
37 lines
945 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenGrid.Framework.Communications;
|
|
using OpenSim.Framework.User;
|
|
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.LocalCommunications.LocalUserManagement
|
|
{
|
|
public class LocalUserServices : IUserServices
|
|
{
|
|
public UserProfileManager userProfileManager = new UserProfileManager();
|
|
public LocalLoginService localLoginService;
|
|
public LocalUserServices()
|
|
{
|
|
localLoginService = new LocalLoginService(this);
|
|
}
|
|
|
|
public UserProfile GetUserProfile(string first_name, string last_name)
|
|
{
|
|
return GetUserProfile(first_name + " " + last_name);
|
|
}
|
|
|
|
public UserProfile GetUserProfile(string name)
|
|
{
|
|
return null;
|
|
}
|
|
public UserProfile GetUserProfile(LLUUID avatar_id)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
}
|
|
}
|