mirror of
https://github.com/opensim/opensim.git
synced 2026-07-15 12:05:49 +08:00
Added ThirdPartyLicenses folder containing the licenses for the various third party libraries we use. Plus some other small changes.
44 lines
1002 B
C#
44 lines
1002 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenGrid.Framework.Communications;
|
|
using OpenSim.Framework.User;
|
|
using OpenGrid.Framework.UserManagement;
|
|
using OpenGrid.Framework.Data;
|
|
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.LocalCommunications
|
|
{
|
|
public class LocalUserServices : UserManagerBase, IUserServices
|
|
{
|
|
|
|
public LocalUserServices()
|
|
{
|
|
|
|
}
|
|
|
|
public UserProfileData GetUserProfile(string first_name, string last_name)
|
|
{
|
|
return GetUserProfile(first_name + " " + last_name);
|
|
}
|
|
|
|
public UserProfileData GetUserProfile(string name)
|
|
{
|
|
return null;
|
|
}
|
|
public UserProfileData GetUserProfile(LLUUID avatar_id)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override void CustomiseResponse(ref Hashtable response, ref UserProfileData theUser)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|