aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorMelanie2010-11-22 00:46:37 +0000
committerMelanie2010-11-22 00:46:37 +0000
commit8466ada8e05c69d9fcd6f8191803d5c40659b641 (patch)
tree1ad6665b23863060d4ba1c1a91cae4f33f017a38 /OpenSim/Region/Framework/Interfaces
parentFox the buglets in Freeswitch. Grid mode works now and there is no reason why... (diff)
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC-8466ada8e05c69d9fcd6f8191803d5c40659b641.zip
opensim-SC-8466ada8e05c69d9fcd6f8191803d5c40659b641.tar.gz
opensim-SC-8466ada8e05c69d9fcd6f8191803d5c40659b641.tar.bz2
opensim-SC-8466ada8e05c69d9fcd6f8191803d5c40659b641.tar.xz
Merge branch 'master' of melanie@opensimulator.org:/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}