diff options
author | diva | 2009-05-25 20:30:24 +0000 |
---|---|---|
committer | diva | 2009-05-25 20:30:24 +0000 |
commit | cb704ecde19c512bfa4fc0b317d37fec63e76713 (patch) | |
tree | 1960e54ce2312b95f030009c335b5211322ef60d /OpenSim/Services/Interfaces/IAuthenticationService.cs | |
parent | * reseparate inventory item creator id and creator uuid (diff) | |
download | opensim-SC-cb704ecde19c512bfa4fc0b317d37fec63e76713.zip opensim-SC-cb704ecde19c512bfa4fc0b317d37fec63e76713.tar.gz opensim-SC-cb704ecde19c512bfa4fc0b317d37fec63e76713.tar.bz2 opensim-SC-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.cs | 14 |
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 @@ | |||
1 | using System; | ||
2 | using OpenMetaverse; | ||
3 | |||
4 | namespace 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 | } | ||