diff options
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.
Diffstat (limited to '')
9 files changed, 14 insertions, 13 deletions
diff --git a/OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs b/OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs index a6fdee0..e79e786 100644 --- a/OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs +++ b/OpenSim/Grid/UserServer.Modules/GridInfoServiceModule.cs | |||
@@ -43,7 +43,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
43 | { | 43 | { |
44 | public class GridInfoServiceModule | 44 | public class GridInfoServiceModule |
45 | { | 45 | { |
46 | protected IUGAIMCore m_core; | 46 | protected IGridServiceCore m_core; |
47 | protected GridInfoService m_gridInfoService; | 47 | protected GridInfoService m_gridInfoService; |
48 | protected BaseHttpServer m_httpServer; | 48 | protected BaseHttpServer m_httpServer; |
49 | 49 | ||
@@ -51,7 +51,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
51 | { | 51 | { |
52 | } | 52 | } |
53 | 53 | ||
54 | public void Initialise(IUGAIMCore core) | 54 | public void Initialise(IGridServiceCore core) |
55 | { | 55 | { |
56 | m_core = core; | 56 | m_core = core; |
57 | m_gridInfoService = new GridInfoService(); | 57 | m_gridInfoService = new GridInfoService(); |
diff --git a/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs b/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs index 5b245ee..f9e7889 100644 --- a/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs +++ b/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs | |||
@@ -79,7 +79,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
79 | 79 | ||
80 | Thread m_NotifyThread; | 80 | Thread m_NotifyThread; |
81 | 81 | ||
82 | private IUGAIMCore m_core; | 82 | private IGridServiceCore m_core; |
83 | 83 | ||
84 | public event AgentLocationDelegate OnAgentLocation; | 84 | public event AgentLocationDelegate OnAgentLocation; |
85 | public event AgentLeavingDelegate OnAgentLeaving; | 85 | public event AgentLeavingDelegate OnAgentLeaving; |
@@ -91,7 +91,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
91 | MessageServers = new Dictionary<string, MessageServerInfo>(); | 91 | MessageServers = new Dictionary<string, MessageServerInfo>(); |
92 | } | 92 | } |
93 | 93 | ||
94 | public void Initialise(IUGAIMCore core) | 94 | public void Initialise(IGridServiceCore core) |
95 | { | 95 | { |
96 | m_core = core; | 96 | m_core = core; |
97 | m_core.RegisterInterface<MessageServersConnector>(this); | 97 | m_core.RegisterInterface<MessageServersConnector>(this); |
diff --git a/OpenSim/Grid/UserServer.Modules/UserDataBaseService.cs b/OpenSim/Grid/UserServer.Modules/UserDataBaseService.cs index 80f2f7b..485dd46 100644 --- a/OpenSim/Grid/UserServer.Modules/UserDataBaseService.cs +++ b/OpenSim/Grid/UserServer.Modules/UserDataBaseService.cs | |||
@@ -41,7 +41,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
41 | { | 41 | { |
42 | public class UserDataBaseService : UserManagerBase | 42 | public class UserDataBaseService : UserManagerBase |
43 | { | 43 | { |
44 | protected IUGAIMCore m_core; | 44 | protected IGridServiceCore m_core; |
45 | 45 | ||
46 | public UserDataBaseService() | 46 | public UserDataBaseService() |
47 | : base(null) | 47 | : base(null) |
@@ -53,7 +53,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
53 | { | 53 | { |
54 | } | 54 | } |
55 | 55 | ||
56 | public void Initialise(IUGAIMCore core) | 56 | public void Initialise(IGridServiceCore core) |
57 | { | 57 | { |
58 | m_core = core; | 58 | m_core = core; |
59 | 59 | ||
diff --git a/OpenSim/Grid/UserServer.Modules/UserManager.cs b/OpenSim/Grid/UserServer.Modules/UserManager.cs index 34daff2..c40201e 100644 --- a/OpenSim/Grid/UserServer.Modules/UserManager.cs +++ b/OpenSim/Grid/UserServer.Modules/UserManager.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
60 | m_userDataBaseService = userDataBaseService; | 60 | m_userDataBaseService = userDataBaseService; |
61 | } | 61 | } |
62 | 62 | ||
63 | public void Initialise(IUGAIMCore core) | 63 | public void Initialise(IGridServiceCore core) |
64 | { | 64 | { |
65 | 65 | ||
66 | } | 66 | } |
diff --git a/OpenSim/Grid/UserServer.Modules/UserServerAvatarAppearanceModule.cs b/OpenSim/Grid/UserServer.Modules/UserServerAvatarAppearanceModule.cs index e68752d..a5a630e 100644 --- a/OpenSim/Grid/UserServer.Modules/UserServerAvatarAppearanceModule.cs +++ b/OpenSim/Grid/UserServer.Modules/UserServerAvatarAppearanceModule.cs | |||
@@ -51,7 +51,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
51 | m_userDataBaseService = userDataBaseService; | 51 | m_userDataBaseService = userDataBaseService; |
52 | } | 52 | } |
53 | 53 | ||
54 | public void Initialise(IUGAIMCore core) | 54 | public void Initialise(IGridServiceCore core) |
55 | { | 55 | { |
56 | 56 | ||
57 | } | 57 | } |
diff --git a/OpenSim/Grid/UserServer.Modules/UserServerFriendsModule.cs b/OpenSim/Grid/UserServer.Modules/UserServerFriendsModule.cs index 6c1daea..49e94ee 100644 --- a/OpenSim/Grid/UserServer.Modules/UserServerFriendsModule.cs +++ b/OpenSim/Grid/UserServer.Modules/UserServerFriendsModule.cs | |||
@@ -52,7 +52,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
52 | m_userDataBaseService = userDataBaseService; | 52 | m_userDataBaseService = userDataBaseService; |
53 | } | 53 | } |
54 | 54 | ||
55 | public void Initialise(IUGAIMCore core) | 55 | public void Initialise(IGridServiceCore core) |
56 | { | 56 | { |
57 | 57 | ||
58 | } | 58 | } |
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 63d788d..dc38a3f 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs | |||
@@ -48,7 +48,7 @@ namespace OpenSim.Grid.UserServer | |||
48 | /// <summary> | 48 | /// <summary> |
49 | /// Grid user server main class | 49 | /// Grid user server main class |
50 | /// </summary> | 50 | /// </summary> |
51 | public class OpenUser_Main : BaseOpenSimServer, IUGAIMCore | 51 | public class OpenUser_Main : BaseOpenSimServer, IGridServiceCore |
52 | { | 52 | { |
53 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 53 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
54 | 54 | ||
@@ -128,6 +128,7 @@ namespace OpenSim.Grid.UserServer | |||
128 | RegisterInterface<ConsoleBase>(m_console); | 128 | RegisterInterface<ConsoleBase>(m_console); |
129 | RegisterInterface<UserConfig>(Cfg); | 129 | RegisterInterface<UserConfig>(Cfg); |
130 | 130 | ||
131 | //Should be in modules? | ||
131 | IInterServiceInventoryServices inventoryService = new OGS1InterServiceInventoryService(Cfg.InventoryUrl); | 132 | IInterServiceInventoryServices inventoryService = new OGS1InterServiceInventoryService(Cfg.InventoryUrl); |
132 | // IRegionProfileService regionProfileService = new RegionProfileServiceProxy(); | 133 | // IRegionProfileService regionProfileService = new RegionProfileServiceProxy(); |
133 | 134 | ||
diff --git a/OpenSim/Grid/UserServer/UserServerCommandModule.cs b/OpenSim/Grid/UserServer/UserServerCommandModule.cs index a6f8af2..7f7108c 100644 --- a/OpenSim/Grid/UserServer/UserServerCommandModule.cs +++ b/OpenSim/Grid/UserServer/UserServerCommandModule.cs | |||
@@ -57,13 +57,13 @@ namespace OpenSim.Grid.UserServer | |||
57 | 57 | ||
58 | protected UUID m_lastCreatedUser = UUID.Random(); | 58 | protected UUID m_lastCreatedUser = UUID.Random(); |
59 | 59 | ||
60 | protected IUGAIMCore m_core; | 60 | protected IGridServiceCore m_core; |
61 | 61 | ||
62 | public UserServerCommandModule() | 62 | public UserServerCommandModule() |
63 | { | 63 | { |
64 | } | 64 | } |
65 | 65 | ||
66 | public void Initialise(IUGAIMCore core) | 66 | public void Initialise(IGridServiceCore core) |
67 | { | 67 | { |
68 | m_core = core; | 68 | m_core = core; |
69 | } | 69 | } |
diff --git a/OpenSim/Grid/UserServer/UserServerEventDispatchModule.cs b/OpenSim/Grid/UserServer/UserServerEventDispatchModule.cs index e23a7d1..2d3f414 100644 --- a/OpenSim/Grid/UserServer/UserServerEventDispatchModule.cs +++ b/OpenSim/Grid/UserServer/UserServerEventDispatchModule.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.Grid.UserServer | |||
60 | m_loginService = loginService; | 60 | m_loginService = loginService; |
61 | } | 61 | } |
62 | 62 | ||
63 | public void Initialise(IUGAIMCore core) | 63 | public void Initialise(IGridServiceCore core) |
64 | { | 64 | { |
65 | } | 65 | } |
66 | 66 | ||