diff options
author | MW | 2007-06-24 18:40:02 +0000 |
---|---|---|
committer | MW | 2007-06-24 18:40:02 +0000 |
commit | d607914f6a7e0ef7890ae229474a1ad90511868f (patch) | |
tree | 0030127df56b96c774faaf8e73a74620d0a13c54 /Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs | |
parent | * Updated to use multi-listeners (diff) | |
download | opensim-SC-d607914f6a7e0ef7890ae229474a1ad90511868f.zip opensim-SC-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.gz opensim-SC-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.bz2 opensim-SC-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.xz |
Hopefully enabled the OGS commsManager
Diffstat (limited to 'Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs b/Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs new file mode 100644 index 0000000..1667e6b --- /dev/null +++ b/Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs | |||
@@ -0,0 +1,25 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenGrid.Framework.Communications; | ||
5 | using OpenGrid.Framework.Data; | ||
6 | using libsecondlife; | ||
7 | |||
8 | namespace OpenGrid.Framework.Communications.OGS1 | ||
9 | { | ||
10 | public class OGSUserServices :IUserServices | ||
11 | { | ||
12 | public UserProfileData GetUserProfile(string firstName, string lastName) | ||
13 | { | ||
14 | return null; | ||
15 | } | ||
16 | public UserProfileData GetUserProfile(string name) | ||
17 | { | ||
18 | return null; | ||
19 | } | ||
20 | public UserProfileData GetUserProfile(LLUUID avatarID) | ||
21 | { | ||
22 | return null; | ||
23 | } | ||
24 | } | ||
25 | } | ||