aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authoropensim mirror account2010-11-21 17:30:05 -0800
committeropensim mirror account2010-11-21 17:30:05 -0800
commitc913f92f0f12dc43e853083083a199ca282df06d (patch)
tree09a0c5bc899a61ba38320a14861f656e86f7b73b /OpenSim/Region/Framework/Interfaces
parentMerge branch 'master' of /var/git/opensim/ (diff)
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-c913f92f0f12dc43e853083083a199ca282df06d.zip
opensim-SC_OLD-c913f92f0f12dc43e853083083a199ca282df06d.tar.gz
opensim-SC_OLD-c913f92f0f12dc43e853083083a199ca282df06d.tar.bz2
opensim-SC_OLD-c913f92f0f12dc43e853083083a199ca282df06d.tar.xz
Merge branch 'master' of /var/git/opensim/
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IUserManagement.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IUserManagement.cs b/OpenSim/Region/Framework/Interfaces/IUserManagement.cs
new file mode 100644
index 0000000..1a5cb7e
--- /dev/null
+++ b/OpenSim/Region/Framework/Interfaces/IUserManagement.cs
@@ -0,0 +1,13 @@
1using System;
2using System.Collections.Generic;
3
4using OpenMetaverse;
5
6namespace OpenSim.Region.Framework.Interfaces
7{
8 public interface IUserManagement
9 {
10 string GetUserName(UUID uuid);
11 void AddUser(UUID uuid, string userData);
12 }
13}