aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-06-22 13:14:48 +0000
committerMelanie Thielker2009-06-22 13:14:48 +0000
commit77ebb7c9f30acaad1cc44a2bce799d05282a5f48 (patch)
treebe420f70ce4601ad6529c5537de3e1dfc3075811 /OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs
parentCommitting the meat of the user server interface and the bones of the service... (diff)
downloadopensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.zip
opensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.tar.gz
opensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.tar.bz2
opensim-SC_OLD-77ebb7c9f30acaad1cc44a2bce799d05282a5f48.tar.xz
Committing RemoteUserServiceConnector out connector, local user service
connector and the glue code.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs
index f364999..1efb8f6 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/User/LocalUserServiceConnector.cs
@@ -42,7 +42,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.User
42 LogManager.GetLogger( 42 LogManager.GetLogger(
43 MethodBase.GetCurrentMethod().DeclaringType); 43 MethodBase.GetCurrentMethod().DeclaringType);
44 44
45 private IUserService m_UserService; 45 private IUserDataService m_UserService;
46 46
47 private bool m_Enabled = false; 47 private bool m_Enabled = false;
48 48
@@ -77,7 +77,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.User
77 77
78 Object[] args = new Object[] { source }; 78 Object[] args = new Object[] { source };
79 m_UserService = 79 m_UserService =
80 ServerUtils.LoadPlugin<IUserService>(serviceDll, 80 ServerUtils.LoadPlugin<IUserDataService>(serviceDll,
81 args); 81 args);
82 82
83 if (m_UserService == null) 83 if (m_UserService == null)
@@ -108,7 +108,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.User
108 if (!m_Enabled) 108 if (!m_Enabled)
109 return; 109 return;
110 110
111 scene.RegisterModuleInterface<IUserService>(m_UserService); 111 scene.RegisterModuleInterface<IUserDataService>(m_UserService);
112 } 112 }
113 113
114 public void RemoveRegion(Scene scene) 114 public void RemoveRegion(Scene scene)