From 61878884569f9c01b6324f9a9d9fbcac7034f536 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Thu, 12 Feb 2009 10:21:21 +0000 Subject: * Renamed RegionProfileService to RegionProfileServiceProxy to better reflect actual use. * Added IRegionProfileService --- OpenSim/Grid/UserServer/Main.cs | 2 +- OpenSim/Grid/UserServer/UserLoginService.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Grid/UserServer') diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 70aaea3..2199e93 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs @@ -168,7 +168,7 @@ namespace OpenSim.Grid.UserServer protected virtual void StartupLoginService(IInterServiceInventoryServices inventoryService) { m_loginService = new UserLoginService( - m_userManager, inventoryService, new LibraryRootFolder(Cfg.LibraryXmlfile), Cfg, Cfg.DefaultStartupMsg, new RegionProfileService()); + m_userManager, inventoryService, new LibraryRootFolder(Cfg.LibraryXmlfile), Cfg, Cfg.DefaultStartupMsg, new RegionProfileServiceProxy()); } protected virtual void AddHttpHandlers() diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index b11714a..d069e1a 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs @@ -59,12 +59,12 @@ namespace OpenSim.Grid.UserServer private UserLoggedInAtLocation handlerUserLoggedInAtLocation; public UserConfig m_config; - private readonly RegionProfileService m_regionProfileService; + private readonly IRegionProfileService m_regionProfileService; public UserLoginService( UserManagerBase userManager, IInterServiceInventoryServices inventoryService, LibraryRootFolder libraryRootFolder, - UserConfig config, string welcomeMess, RegionProfileService regionProfileService) + UserConfig config, string welcomeMess, IRegionProfileService regionProfileService) : base(userManager, libraryRootFolder, welcomeMess) { m_config = config; -- cgit v1.1