diff options
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/IUserServices.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/IUserServices.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Common/OpenGrid.Framework.Communications/IUserServices.cs b/Common/OpenGrid.Framework.Communications/IUserServices.cs index 9eed195..798200a 100644 --- a/Common/OpenGrid.Framework.Communications/IUserServices.cs +++ b/Common/OpenGrid.Framework.Communications/IUserServices.cs | |||
@@ -30,12 +30,15 @@ using System.Collections.Generic; | |||
30 | using System.Text; | 30 | using System.Text; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | 32 | ||
33 | using OpenSim.Framework.User; | ||
34 | |||
33 | namespace OpenGrid.Framework.Communications | 35 | namespace OpenGrid.Framework.Communications |
34 | { | 36 | { |
35 | public interface IUserServices | 37 | public interface IUserServices |
36 | { | 38 | { |
37 | void GetUserProfile(string name); | 39 | UserProfile GetUserProfile(string first_name, string last_name); |
38 | void GetUserProfile(LLUUID avatar_id); //should be returning UserProfile | 40 | UserProfile GetUserProfile(string name); |
41 | UserProfile GetUserProfile(LLUUID avatar_id); | ||
39 | 42 | ||
40 | } | 43 | } |
41 | } | 44 | } |