Renamed IUGAIMCore to IGridServiceCore, still not really happy with this name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.

This commit is contained in:
MW
2009-02-25 19:39:56 +00:00
parent 0f62b2bacb
commit c856da2ee6
19 changed files with 69 additions and 68 deletions

View File

@@ -43,7 +43,7 @@ namespace OpenSim.Grid.UserServer.Modules
{
public class GridInfoServiceModule
{
protected IUGAIMCore m_core;
protected IGridServiceCore m_core;
protected GridInfoService m_gridInfoService;
protected BaseHttpServer m_httpServer;
@@ -51,7 +51,7 @@ namespace OpenSim.Grid.UserServer.Modules
{
}
public void Initialise(IUGAIMCore core)
public void Initialise(IGridServiceCore core)
{
m_core = core;
m_gridInfoService = new GridInfoService();

View File

@@ -79,7 +79,7 @@ namespace OpenSim.Grid.UserServer.Modules
Thread m_NotifyThread;
private IUGAIMCore m_core;
private IGridServiceCore m_core;
public event AgentLocationDelegate OnAgentLocation;
public event AgentLeavingDelegate OnAgentLeaving;
@@ -91,7 +91,7 @@ namespace OpenSim.Grid.UserServer.Modules
MessageServers = new Dictionary<string, MessageServerInfo>();
}
public void Initialise(IUGAIMCore core)
public void Initialise(IGridServiceCore core)
{
m_core = core;
m_core.RegisterInterface<MessageServersConnector>(this);

View File

@@ -41,7 +41,7 @@ namespace OpenSim.Grid.UserServer.Modules
{
public class UserDataBaseService : UserManagerBase
{
protected IUGAIMCore m_core;
protected IGridServiceCore m_core;
public UserDataBaseService()
: base(null)
@@ -53,7 +53,7 @@ namespace OpenSim.Grid.UserServer.Modules
{
}
public void Initialise(IUGAIMCore core)
public void Initialise(IGridServiceCore core)
{
m_core = core;

View File

@@ -60,7 +60,7 @@ namespace OpenSim.Grid.UserServer.Modules
m_userDataBaseService = userDataBaseService;
}
public void Initialise(IUGAIMCore core)
public void Initialise(IGridServiceCore core)
{
}

View File

@@ -51,7 +51,7 @@ namespace OpenSim.Grid.UserServer.Modules
m_userDataBaseService = userDataBaseService;
}
public void Initialise(IUGAIMCore core)
public void Initialise(IGridServiceCore core)
{
}

View File

@@ -52,7 +52,7 @@ namespace OpenSim.Grid.UserServer.Modules
m_userDataBaseService = userDataBaseService;
}
public void Initialise(IUGAIMCore core)
public void Initialise(IGridServiceCore core)
{
}