aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer
diff options
context:
space:
mode:
authorMW2009-02-25 19:39:56 +0000
committerMW2009-02-25 19:39:56 +0000
commitc856da2ee6634762951312b160ef1f85634d6c89 (patch)
treef4775f60a9a6de46d9612a57b3b437605576a56d /OpenSim/Grid/UserServer
parentAdded IGridServiceModule to be the base interface for the Service Modules for... (diff)
downloadopensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.zip
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.gz
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.bz2
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.xz
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 'OpenSim/Grid/UserServer')
-rw-r--r--OpenSim/Grid/UserServer/Main.cs3
-rw-r--r--OpenSim/Grid/UserServer/UserServerCommandModule.cs4
-rw-r--r--OpenSim/Grid/UserServer/UserServerEventDispatchModule.cs2
3 files changed, 5 insertions, 4 deletions
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