diff options
author | Diva Canto | 2009-08-15 15:45:25 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-15 15:45:25 -0700 |
commit | 9d4ed3b01872ea5535b712a26477389f7017c1fd (patch) | |
tree | 3501009f4937c21242600cf776afe6331367a078 /OpenSim/Region/OptionalModules/Scripting/Minimodule/SecurityCredential.cs | |
parent | Changed one word in a comment (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-9d4ed3b01872ea5535b712a26477389f7017c1fd.zip opensim-SC_OLD-9d4ed3b01872ea5535b712a26477389f7017c1fd.tar.gz opensim-SC_OLD-9d4ed3b01872ea5535b712a26477389f7017c1fd.tar.bz2 opensim-SC_OLD-9d4ed3b01872ea5535b712a26477389f7017c1fd.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/SecurityCredential.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/SecurityCredential.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SecurityCredential.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SecurityCredential.cs new file mode 100644 index 0000000..bd4440c --- /dev/null +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SecurityCredential.cs | |||
@@ -0,0 +1,21 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | ||
6 | { | ||
7 | class SecurityCredential : ISecurityCredential | ||
8 | { | ||
9 | private readonly ISocialEntity m_owner; | ||
10 | |||
11 | public SecurityCredential(ISocialEntity m_owner) | ||
12 | { | ||
13 | this.m_owner = m_owner; | ||
14 | } | ||
15 | |||
16 | public ISocialEntity owner | ||
17 | { | ||
18 | get { return m_owner; } | ||
19 | } | ||
20 | } | ||
21 | } | ||