From 29e8fcd13c99606813c916c4d464372572af230f Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 24 Jul 2008 15:20:57 +0000 Subject: * minor: Rename IInterGridInventoryServices since it's inter service rather than inter grid --- OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 2 +- OpenSim/Region/Communications/Local/LocalLoginService.cs | 8 ++++---- OpenSim/Region/Communications/Local/LocalUserServices.cs | 8 ++++---- OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 2 +- OpenSim/Region/Communications/OGS1/OGS1SecureInvenotryService.cs | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) (limited to 'OpenSim/Region/Communications') diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index 3bc3f9a..6793889 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs @@ -46,7 +46,7 @@ namespace OpenSim.Region.Communications.Local { AddInventoryService(inventoryService); m_defaultInventoryHost = inventoryService.Host; - m_interGridInventoryService = inventoryService; + m_interServiceInventoryService = inventoryService; m_userService = userService; m_avatarService = (IAvatarService)userService; m_gridService = gridService; diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 98672c2..bdd32ea 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs @@ -85,7 +85,7 @@ namespace OpenSim.Region.Communications.Local profile = m_userManager.GetUserProfile(firstname, lastname); if (profile != null) { - m_Parent.InterGridInventoryService.CreateNewUserInventory(profile.ID); + m_Parent.InterServiceInventoryService.CreateNewUserInventory(profile.ID); } return profile; @@ -260,13 +260,13 @@ namespace OpenSim.Region.Communications.Local // See LoginService protected override InventoryData GetInventorySkeleton(LLUUID userID, string serverUrl) { - List folders = m_Parent.InterGridInventoryService.GetInventorySkeleton(userID); + List folders = m_Parent.InterServiceInventoryService.GetInventorySkeleton(userID); // If we have user auth but no inventory folders for some reason, create a new set of folders. if (null == folders || 0 == folders.Count) { - m_Parent.InterGridInventoryService.CreateNewUserInventory(userID); - folders = m_Parent.InterGridInventoryService.GetInventorySkeleton(userID); + m_Parent.InterServiceInventoryService.CreateNewUserInventory(userID); + folders = m_Parent.InterServiceInventoryService.GetInventorySkeleton(userID); } LLUUID rootID = LLUUID.Zero; diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 76791f1..2ee7981 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs @@ -37,7 +37,7 @@ namespace OpenSim.Region.Communications.Local // private readonly NetworkServersInfo m_serversInfo; private readonly uint m_defaultHomeX; private readonly uint m_defaultHomeY; - private IInterGridInventoryServices m_interGridInventoryService; + private IInterServiceInventoryServices m_interServiceInventoryService; /// /// @@ -48,14 +48,14 @@ namespace OpenSim.Region.Communications.Local /// /// Can be null if stats collection is not required. public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY, - IInterGridInventoryServices interGridInventoryService) + IInterServiceInventoryServices interServiceInventoryService) { // m_serversInfo = serversInfo; m_defaultHomeX = defaultHomeLocX; m_defaultHomeY = defaultHomeLocY; - m_interGridInventoryService = interGridInventoryService; + m_interServiceInventoryService = interServiceInventoryService; } public override UserProfileData SetupMasterUser(string firstName, string lastName) @@ -82,7 +82,7 @@ namespace OpenSim.Region.Communications.Local } else { - m_interGridInventoryService.CreateNewUserInventory(profile.ID); + m_interServiceInventoryService.CreateNewUserInventory(profile.ID); } return profile; diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index b86d9ea..80c286e 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs @@ -39,7 +39,7 @@ using OpenSim.Framework.Statistics; namespace OpenSim.Region.Communications.OGS1 { - public class OGS1InventoryService : IInventoryServices, IInterGridInventoryServices + public class OGS1InventoryService : IInventoryServices, IInterServiceInventoryServices { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); diff --git a/OpenSim/Region/Communications/OGS1/OGS1SecureInvenotryService.cs b/OpenSim/Region/Communications/OGS1/OGS1SecureInvenotryService.cs index fbfc680..bb94c20 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1SecureInvenotryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1SecureInvenotryService.cs @@ -39,7 +39,7 @@ using OpenSim.Framework.Statistics; namespace OpenSim.Region.Communications.OGS1 { - public class OGS1SecureInventoryService : ISecureInventoryService, IInterGridInventoryServices + public class OGS1SecureInventoryService : ISecureInventoryService, IInterServiceInventoryServices { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); -- cgit v1.1