mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
* Beginnings of a Security Credential system in MRM. This will eventually lead to trusted execution of untrusted MRMs.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user