mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
* renamed IRegionProfileService to IRegionProfileRouter to better reflect use (naming is a work in progress...)
* introduced new IRegionProfileService that is going to be _one_ profileService * Had GridDBService inherit the IRegionProfileService (preparing for re-wiring things and de-duplicating eventually)
This commit is contained in:
@@ -42,7 +42,7 @@ using OpenSim.Framework.Servers;
|
||||
|
||||
namespace OpenSim.Grid.GridServer.Modules
|
||||
{
|
||||
public class GridDBService
|
||||
public class GridDBService : IRegionProfileService
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
|
||||
@@ -60,14 +60,14 @@ namespace OpenSim.Grid.UserServer.Modules
|
||||
private UserLoggedInAtLocation handlerUserLoggedInAtLocation;
|
||||
|
||||
public UserConfig m_config;
|
||||
private readonly IRegionProfileService m_regionProfileService;
|
||||
private readonly IRegionProfileRouter m_regionProfileService;
|
||||
|
||||
protected BaseHttpServer m_httpServer;
|
||||
|
||||
public UserLoginService(
|
||||
UserManagerBase userManager, IInterServiceInventoryServices inventoryService,
|
||||
LibraryRootFolder libraryRootFolder,
|
||||
UserConfig config, string welcomeMess, IRegionProfileService regionProfileService)
|
||||
UserConfig config, string welcomeMess, IRegionProfileRouter regionProfileService)
|
||||
: base(userManager, libraryRootFolder, welcomeMess)
|
||||
{
|
||||
m_config = config;
|
||||
|
||||
Reference in New Issue
Block a user