Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System.ServiceModel;
10 :
11 : namespace Cqrs.Authentication
12 : {
13 : [ServiceContract(Namespace = "https://getcqrs.net/SingleSignOn/TokenFactory")]
14 : public interface IDefaultSingleSignOnTokenFactory : ISingleSignOnTokenFactory<SingleSignOnToken>
15 : {
16 : [OperationContract]
17 0 : ISingleSignOnToken RenewTokenExpiry(ISingleSignOnToken token, int timeoutInMinutes = 360);
18 : }
19 : }
|