Files
opensim/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/LocalUserServices.cs
mingchen 78af287448 *Added some missing files from last commit
*LoginService is now only used in LocalCommunications and not as a interface in RegionCommunications
2007-06-19 00:18:06 +00:00

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;
}
}
}