* Beginnings of a Security Credential system in MRM. This will eventually lead to trusted execution of untrusted MRMs.

This commit is contained in:
Adam Frisby
2009-08-16 03:48:16 +10:00
parent 6ece8d86e0
commit 9090a90769
6 changed files with 62 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
class SecurityCredential : ISecurityCredential
{
private readonly ISocialEntity m_owner;
public SecurityCredential(ISocialEntity m_owner)
{
this.m_owner = m_owner;
}
public ISocialEntity owner
{
get { return m_owner; }
}
}
}