source:
trunk/sources/HeuristicLab.Security.Contracts/Interfaces/IPermissionManager.cs
@
1380
Last change on this file since 1380 was 1378, checked in by svonolfe, 16 years ago | |
---|---|
File size: 357 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | |
5 | namespace HeuristicLab.Security.Contracts.Interfaces { |
6 | interface IPermissionManager { |
7 | Guid Authenticate(String userName, String password); |
8 | bool CheckPermission(Guid sessionId, Guid permissionToken, |
9 | Guid enitityId); |
10 | void EndSession(Guid sessionId); |
11 | } |
12 | } |
Note: See TracBrowser
for help on using the repository browser.