aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/IUserServices.cs
diff options
context:
space:
mode:
authormingchen2007-06-18 20:10:19 +0000
committermingchen2007-06-18 20:10:19 +0000
commit56c4a3df5b9a13333fbe15160e9b7383a98e3675 (patch)
tree7df9c5c4e41bb9c1751f23627ab1d74dadf6b6a0 /Common/OpenGrid.Framework.Communications/IUserServices.cs
parent* example soft logger by delegate (diff)
downloadopensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.zip
opensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.gz
opensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.bz2
opensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.xz
*Updated/Added the base classes and interfaces for user and login servers
*Not yet usable, but I'm working on it
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}