Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Security.Contracts/Interfaces/IPermissionManager.cs @ 1384

Last change on this file since 1384 was 1384, checked in by svonolfe, 15 years ago

Updated interfaces (#532)

File size: 354 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace HeuristicLab.Security.Contracts.Interfaces {
6  interface IPermissionManager {
7    Guid Authenticate(String userName, String password);
8    bool CheckPermission(Guid sessionId, Guid permissionId,
9      Guid enitityId);
10    void EndSession(Guid sessionId);
11  }
12}
Note: See TracBrowser for help on using the repository browser.