Line data Source code
1 : using System;
2 : using Cqrs.Authentication;
3 :
4 : namespace Cqrs.Azure.ServiceBus.Tests.Integration
5 : {
6 : public class GuidSingleSignOnTokenValueHelper : IAuthenticationTokenHelper<Guid>
7 0 : {
8 : #region IAuthenticationTokenHelper<Guid> Members
9 :
10 0 : public Guid GetAuthenticationToken()
11 : {
12 : return Guid.Empty;
13 : }
14 :
15 0 : public Guid SetAuthenticationToken(Guid permissionScope)
16 : {
17 : return Guid.Empty;
18 : }
19 :
20 : #endregion
21 : }
22 : }
|