aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IAuthenticationService.cs
diff options
context:
space:
mode:
authordiva2009-05-25 20:30:24 +0000
committerdiva2009-05-25 20:30:24 +0000
commitcb704ecde19c512bfa4fc0b317d37fec63e76713 (patch)
tree1960e54ce2312b95f030009c335b5211322ef60d /OpenSim/Services/Interfaces/IAuthenticationService.cs
parent* reseparate inventory item creator id and creator uuid (diff)
downloadopensim-SC_OLD-cb704ecde19c512bfa4fc0b317d37fec63e76713.zip
opensim-SC_OLD-cb704ecde19c512bfa4fc0b317d37fec63e76713.tar.gz
opensim-SC_OLD-cb704ecde19c512bfa4fc0b317d37fec63e76713.tar.bz2
opensim-SC_OLD-cb704ecde19c512bfa4fc0b317d37fec63e76713.tar.xz
Beginning of refactoring RESTComms/LocalComms in the new style of services and connectors. This commit has the beginning of the In connector, not the Out. Nothing of this is finished yet, and it doesn't run. But it should compile ok.
Diffstat (limited to 'OpenSim/Services/Interfaces/IAuthenticationService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IAuthenticationService.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IAuthenticationService.cs b/OpenSim/Services/Interfaces/IAuthenticationService.cs
new file mode 100644
index 0000000..25ceaa6
--- /dev/null
+++ b/OpenSim/Services/Interfaces/IAuthenticationService.cs
@@ -0,0 +1,14 @@
1using System;
2using OpenMetaverse;
3
4namespace OpenSim.Services.Interfaces
5{
6 public interface IAuthenticationService
7 {
8 string GetNewKey(UUID userID, UUID authToken);
9
10 bool VerifyKey(UUID userID, string key);
11
12 bool VerifySession(UUID iserID, UUID sessionID);
13 }
14}