diff options
author | opensim mirror account | 2010-11-21 17:30:05 -0800 |
---|---|---|
committer | opensim mirror account | 2010-11-21 17:30:05 -0800 |
commit | c913f92f0f12dc43e853083083a199ca282df06d (patch) | |
tree | 09a0c5bc899a61ba38320a14861f656e86f7b73b /OpenSim/Region/Framework/Interfaces | |
parent | Merge branch 'master' of /var/git/opensim/ (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-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.cs | 13 |
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | |||
4 | using OpenMetaverse; | ||
5 | |||
6 | namespace OpenSim.Region.Framework.Interfaces | ||
7 | { | ||
8 | public interface IUserManagement | ||
9 | { | ||
10 | string GetUserName(UUID uuid); | ||
11 | void AddUser(UUID uuid, string userData); | ||
12 | } | ||
13 | } | ||