diff options
author | mingchen | 2007-06-19 00:18:06 +0000 |
---|---|---|
committer | mingchen | 2007-06-19 00:18:06 +0000 |
commit | 78af28744856aae9af944df2d4e5fa92af448121 (patch) | |
tree | 8a959884111fd6e1d089230888208dfde02cc03e /OpenSim/OpenSim.LocalCommunications/LocalUserManagement/LocalUserServices.cs | |
parent | *Updated/Added the base classes and interfaces for user and login servers (diff) | |
download | opensim-SC-78af28744856aae9af944df2d4e5fa92af448121.zip opensim-SC-78af28744856aae9af944df2d4e5fa92af448121.tar.gz opensim-SC-78af28744856aae9af944df2d4e5fa92af448121.tar.bz2 opensim-SC-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 '')
-rw-r--r-- | OpenSim/OpenSim.LocalCommunications/LocalUserManagement/LocalUserServices.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/LocalUserServices.cs b/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/LocalUserServices.cs new file mode 100644 index 0000000..f438117 --- /dev/null +++ b/OpenSim/OpenSim.LocalCommunications/LocalUserManagement/LocalUserServices.cs | |||
@@ -0,0 +1,36 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | using OpenGrid.Framework.Communications; | ||
6 | using OpenSim.Framework.User; | ||
7 | |||
8 | using libsecondlife; | ||
9 | |||
10 | namespace OpenSim.LocalCommunications.LocalUserManagement | ||
11 | { | ||
12 | public class LocalUserServices : IUserServices | ||
13 | { | ||
14 | public UserProfileManager userProfileManager = new UserProfileManager(); | ||
15 | public LocalLoginService localLoginService; | ||
16 | public LocalUserServices() | ||
17 | { | ||
18 | localLoginService = new LocalLoginService(this); | ||
19 | } | ||
20 | |||
21 | public UserProfile GetUserProfile(string first_name, string last_name) | ||
22 | { | ||
23 | return GetUserProfile(first_name + " " + last_name); | ||
24 | } | ||
25 | |||
26 | public UserProfile GetUserProfile(string name) | ||
27 | { | ||
28 | return null; | ||
29 | } | ||
30 | public UserProfile GetUserProfile(LLUUID avatar_id) | ||
31 | { | ||
32 | return null; | ||
33 | } | ||
34 | |||
35 | } | ||
36 | } | ||