Free cookie consent management tool by TermsFeed Policy Generator

source: branches/UserManagement/HeuristicLab.Services.Authentication/Interfaces/IAuthenticationService.cs @ 4584

Last change on this file since 4584 was 4584, checked in by jwolfing, 13 years ago

#1196 startup solution

File size: 524 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Services.Authentication.DataTransfer;
6using System.ServiceModel;
7using System.Net.Security;
8
9namespace HeuristicLab.Services.Authentication
10{
11    [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)]
12    public interface IAuthenticationService
13    {
14        [OperationContract]
15        User GetUser(Guid id);
16        [OperationContract]
17        IEnumerable<User> GetUsers();
18    }
19}
Note: See TracBrowser for help on using the repository browser.