aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications/LocalUserServices.cs
blob: 0fe52a7273e5f11f412cb7d731685f73d082ee80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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)
        {

        }

    }
}