forked from gitter-badger/IdentityServer4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthorizationCode.cs
More file actions
137 lines (120 loc) · 3.83 KB
/
AuthorizationCode.cs
File metadata and controls
137 lines (120 loc) · 3.83 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using System;
using System.Collections.Generic;
using System.Security.Claims;
namespace IdentityServer4.Models
{
/// <summary>
/// Models an authorization code.
/// </summary>
public class AuthorizationCode
{
/// <summary>
/// Gets or sets the creation time.
/// </summary>
/// <value>
/// The creation time.
/// </value>
public DateTime CreationTime { get; set; }
/// <summary>
/// Gets or sets the life time in seconds.
/// </summary>
/// <value>
/// The life time.
/// </value>
public int Lifetime { get; set; }
/// <summary>
/// Gets or sets the ID of the client.
/// </summary>
/// <value>
/// The ID of the client.
/// </value>
public string ClientId { get; set; }
/// <summary>
/// Gets or sets the subject.
/// </summary>
/// <value>
/// The subject.
/// </value>
public ClaimsPrincipal Subject { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this code is an OpenID Connect code.
/// </summary>
/// <value>
/// <c>true</c> if this instance is open identifier; otherwise, <c>false</c>.
/// </value>
public bool IsOpenId { get; set; }
/// <summary>
/// Gets or sets the requested scopes.
/// </summary>
/// <value>
/// The requested scopes.
/// </value>
// todo: brock, change to parsed scopes
public IEnumerable<string> RequestedScopes { get; set; }
/// <summary>
/// Gets or sets the redirect URI.
/// </summary>
/// <value>
/// The redirect URI.
/// </value>
public string RedirectUri { get; set; }
/// <summary>
/// Gets or sets the nonce.
/// </summary>
/// <value>
/// The nonce.
/// </value>
public string Nonce { get; set; }
/// <summary>
/// Gets or sets the hashed state (to output s_hash claim).
/// </summary>
/// <value>
/// The hashed state.
/// </value>
public string StateHash { get; set; }
/// <summary>
/// Gets or sets a value indicating whether consent was shown.
/// </summary>
/// <value>
/// <c>true</c> if consent was shown; otherwise, <c>false</c>.
/// </value>
public bool WasConsentShown { get; set; }
/// <summary>
/// Gets or sets the session identifier.
/// </summary>
/// <value>
/// The session identifier.
/// </value>
public string SessionId { get; set; }
/// <summary>
/// Gets or sets the code challenge.
/// </summary>
/// <value>
/// The code challenge.
/// </value>
public string CodeChallenge { get; set; }
/// <summary>
/// Gets or sets the code challenge method.
/// </summary>
/// <value>
/// The code challenge method
/// </value>
public string CodeChallengeMethod { get; set; }
/// <summary>
/// Gets the description the user assigned to the device being authorized.
/// </summary>
/// <value>
/// The description.
/// </value>
public string Description { get; set; }
/// <summary>
/// Gets or sets properties
/// </summary>
/// <value>
/// The properties
/// </value>
public IDictionary<string, string> Properties { get; set; } = new Dictionary<string, string>();
}
}