aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IUserServices.cs
diff options
context:
space:
mode:
authormingchen2007-06-28 14:45:46 +0000
committermingchen2007-06-28 14:45:46 +0000
commitbee543300fc812277e9a9478dc05b986e00ed44e (patch)
tree06282ee383d09a271cc8c7bbeed5dd41b5abee8c /OpenSim/Framework/Communications/IUserServices.cs
parentFinished removing the old scripting code, Scene.Scripting.cs and OpenSim.Fram... (diff)
downloadopensim-SC_OLD-bee543300fc812277e9a9478dc05b986e00ed44e.zip
opensim-SC_OLD-bee543300fc812277e9a9478dc05b986e00ed44e.tar.gz
opensim-SC_OLD-bee543300fc812277e9a9478dc05b986e00ed44e.tar.bz2
opensim-SC_OLD-bee543300fc812277e9a9478dc05b986e00ed44e.tar.xz
*User Profile requests on OGS UserServer now uses XMLRPC instead of REST
*Added base support for setting up a master user
Diffstat (limited to 'OpenSim/Framework/Communications/IUserServices.cs')
-rw-r--r--OpenSim/Framework/Communications/IUserServices.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/IUserServices.cs b/OpenSim/Framework/Communications/IUserServices.cs
index 6790651..37f4942 100644
--- a/OpenSim/Framework/Communications/IUserServices.cs
+++ b/OpenSim/Framework/Communications/IUserServices.cs
@@ -39,6 +39,9 @@ namespace OpenSim.Framework.Communications
39 UserProfileData GetUserProfile(string firstName, string lastName); 39 UserProfileData GetUserProfile(string firstName, string lastName);
40 UserProfileData GetUserProfile(string name); 40 UserProfileData GetUserProfile(string name);
41 UserProfileData GetUserProfile(LLUUID avatarID); 41 UserProfileData GetUserProfile(LLUUID avatarID);
42 42
43 UserProfileData SetupMasterUser(string firstName, string lastName);
44 UserProfileData SetupMasterUser(string firstName, string lastName, string password);
45
43 } 46 }
44} 47}