Committing the interface change and the addition to the modules to get

the ball rolling on replacable modules. No user functionality yet
This commit is contained in:
Melanie Thielker
2009-07-10 20:17:13 +00:00
parent 2ff08c84f5
commit 8ecfc9a717
37 changed files with 195 additions and 0 deletions

View File

@@ -46,6 +46,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.User
private bool m_Enabled = false;
public Type ReplacableInterface
{
get { return null; }
}
public string Name
{
get { return "LocalUserServicesConnector"; }

View File

@@ -25,6 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using Nini.Config;
using log4net;
using System.Reflection;
@@ -44,6 +45,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.User
private bool m_Enabled = false;
public Type ReplacableInterface
{
get { return null; }
}
public string Name
{
get { return "RemoteUserServicesConnector"; }