blob: f38df9a07b4e72484d93070fa91f5710cf2a859c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
//-----------------------------------------------------------------------
// <copyright file="IAuthorizationState.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth2 {
using System;
using System.Collections.Generic;
/// <summary>
/// Provides access to a persistent object that tracks the state of an authorization.
/// </summary>
public interface IAuthorizationState {
/// <summary>
/// Gets or sets the callback URL used to obtain authorization.
/// </summary>
/// <value>The callback URL.</value>
Uri Callback { get; set; }
/// <summary>
/// Gets or sets the long-lived token used to renew the short-lived <see cref="AccessToken"/>.
/// </summary>
/// <value>The refresh token.</value>
string RefreshToken { get; set; }
/// <summary>
/// Gets or sets the access token.
/// </summary>
/// <value>The access token.</value>
string AccessToken { get; set; }
/// <summary>
/// Gets or sets the access token issue date UTC.
/// </summary>
/// <value>The access token issue date UTC.</value>
DateTime? AccessTokenIssueDateUtc { get; set; }
/// <summary>
/// Gets or sets the access token UTC expiration date.
/// </summary>
DateTime? AccessTokenExpirationUtc { get; set; }
/// <summary>
/// Gets the scope the token is (to be) authorized for.
/// </summary>
/// <value>The scope.</value>
HashSet<string> Scope { get; }
/// <summary>
/// Deletes this authorization, including access token and refresh token where applicable.
/// </summary>
/// <remarks>
/// This method is invoked when an authorization attempt fails, is rejected, is revoked, or
/// expires and cannot be renewed.
/// </remarks>
void Delete();
/// <summary>
/// Saves any changes made to this authorization object's properties.
/// </summary>
/// <remarks>
/// This method is invoked after DotNetOpenAuth changes any property.
/// </remarks>
void SaveChanges();
}
}
|