aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs
diff options
context:
space:
mode:
authormingchen2007-06-19 00:18:06 +0000
committermingchen2007-06-19 00:18:06 +0000
commit78af28744856aae9af944df2d4e5fa92af448121 (patch)
tree8a959884111fd6e1d089230888208dfde02cc03e /OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs
parent*Updated/Added the base classes and interfaces for user and login servers (diff)
downloadopensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.zip
opensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.tar.gz
opensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.tar.bz2
opensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.tar.xz
*Added some missing files from last commit
*LoginService is now only used in LocalCommunications and not as a interface in RegionCommunications
Diffstat (limited to 'OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs')
-rw-r--r--OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs b/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs
new file mode 100644
index 0000000..5f9d028
--- /dev/null
+++ b/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/UserProfileManager.cs
@@ -0,0 +1,42 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5using libsecondlife;
6using OpenSim.Framework.User;
7
8namespace OpenSim.LocalCommunications.LocalUserManagement
9{
10 public class UserProfileManager
11 {
12 Dictionary<LLUUID, UserProfile> userProfiles = new Dictionary<LLUUID, UserProfile>();
13
14 public UserProfileManager()
15 {
16 }
17
18 private LLUUID getUserUUID(string first_name, string last_name)
19 {
20 return getUserUUID(first_name + " " + last_name);
21 }
22 private LLUUID getUserUUID(string name)
23 {
24 return null;
25 }
26
27
28 public UserProfile getUserProfile(string first_name, string last_name)
29 {
30 return getUserProfile(first_name + " " + last_name);
31 }
32 public UserProfile getUserProfile(string name)
33 {
34 return null;
35 }
36 public UserProfile getUserProfile(LLUUID user_id)
37 {
38 return null;
39 }
40
41 }
42}