From 11d72f270d629adf747131b9fe3a47e0d0a583ce Mon Sep 17 00:00:00 2001 From: Melanie Date: Sun, 9 Aug 2009 21:53:11 +0100 Subject: Rename UserData to UserAccount data --- OpenSim/Grid/InventoryServer/Main.cs | 2 ++ .../CoreModules/Resources/CoreModulePlugin.addin.xml | 1 + OpenSim/Services/Interfaces/IUserService.cs | 14 +++++++------- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/OpenSim/Grid/InventoryServer/Main.cs b/OpenSim/Grid/InventoryServer/Main.cs index 6106d93..504563a 100644 --- a/OpenSim/Grid/InventoryServer/Main.cs +++ b/OpenSim/Grid/InventoryServer/Main.cs @@ -84,6 +84,8 @@ namespace OpenSim.Grid.InventoryServer m_log.Info("[" + LogName + "]: Started HTTP server"); + new HGInventoryService(m_inventoryService, config.AssetServerURL, config.UserServerURL, m_httpServer, config.InventoryServerURL); + base.StartupSpecific(); m_console.Commands.AddCommand("inventoryserver", false, "add user", diff --git a/OpenSim/Region/CoreModules/Resources/CoreModulePlugin.addin.xml b/OpenSim/Region/CoreModules/Resources/CoreModulePlugin.addin.xml index 8e85559..c0932bd 100644 --- a/OpenSim/Region/CoreModules/Resources/CoreModulePlugin.addin.xml +++ b/OpenSim/Region/CoreModules/Resources/CoreModulePlugin.addin.xml @@ -37,6 +37,7 @@ \ + \ diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs index 9bbe503..05eda97 100644 --- a/OpenSim/Services/Interfaces/IUserService.cs +++ b/OpenSim/Services/Interfaces/IUserService.cs @@ -30,7 +30,7 @@ using OpenMetaverse; namespace OpenSim.Services.Interfaces { - public class UserData + public class UserAccountData { public UserData() { @@ -78,7 +78,7 @@ namespace OpenSim.Services.Interfaces }; - public class UserDataMessage + public class UserAccountDataMessage { public UserData Data; @@ -93,10 +93,10 @@ namespace OpenSim.Services.Interfaces public UUID SessionID; }; - public interface IUserDataService + public interface IUserAccountDataService { - UserData GetUserData(UUID scopeID, UUID userID); - UserData GetUserData(UUID scopeID, string FirstName, string LastName); + UserData GetUserAccountData(UUID scopeID, UUID userID); + UserData GetUserAccountData(UUID scopeID, string FirstName, string LastName); // This will set only the home region portion of the data! // Can't be used to set god level, flags, type or change the name! @@ -105,7 +105,7 @@ namespace OpenSim.Services.Interfaces // Update all updatable fields // - bool SetUserData(UserData data, UUID PrincipalID, UUID SessionID); + bool SetUserAccountData(UserData data, UUID PrincipalID, UUID SessionID); // Returns the list of avatars that matches both the search // criterion and the scope ID passed @@ -113,6 +113,6 @@ namespace OpenSim.Services.Interfaces List GetAvatarPickerData(UUID scopeID, string query); // Creates a user data record - bool CreateUserData(UserData data, UUID PrincipalID, UUID SessionID); + bool CreateUserAccountData(UserData data, UUID PrincipalID, UUID SessionID); } } -- cgit v1.1