aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/IUserServices.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/IUserServices.cs')
-rw-r--r--Common/OpenGrid.Framework.Communications/IUserServices.cs7
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;
30using System.Text; 30using System.Text;
31using libsecondlife; 31using libsecondlife;
32 32
33using OpenSim.Framework.User;
34
33namespace OpenGrid.Framework.Communications 35namespace 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}