Skip to content
This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Commit f89bc6d

Browse files
committed
Remove IOAuthIntrospectionEvents and IOAuthValidationEvents
1 parent 768f895 commit f89bc6d

File tree

16 files changed

+178
-376
lines changed

16 files changed

+178
-376
lines changed

src/AspNet.Security.OAuth.Introspection/IOAuthIntrospectionEvents.cs

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/AspNet.Security.OAuth.Introspection/OAuthIntrospectionEvents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace AspNet.Security.OAuth.Introspection {
1111
/// <summary>
1212
/// Allows customization of introspection handling within the middleware.
1313
/// </summary>
14-
public class OAuthIntrospectionEvents : IOAuthIntrospectionEvents {
14+
public class OAuthIntrospectionEvents {
1515
/// <summary>
1616
/// Invoked when a ticket is to be created from an introspection response.
1717
/// </summary>

src/AspNet.Security.OAuth.Introspection/OAuthIntrospectionOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public OAuthIntrospectionOptions() {
6565
/// The application may implement the interface fully, or it may create an instance of
6666
/// <see cref="OAuthIntrospectionEvents"/> and assign delegates only to the events it wants to process.
6767
/// </summary>
68-
public IOAuthIntrospectionEvents Events { get; set; } = new OAuthIntrospectionEvents();
68+
public OAuthIntrospectionEvents Events { get; set; } = new OAuthIntrospectionEvents();
6969

7070
/// <summary>
7171
/// Gets or sets the HTTP client used to communicate

src/AspNet.Security.OAuth.Validation/IOAuthValidationEvents.cs

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/AspNet.Security.OAuth.Validation/OAuthValidationEvents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace AspNet.Security.OAuth.Validation {
1111
/// <summary>
1212
/// Allows customization of validation handling within the middleware.
1313
/// </summary>
14-
public class OAuthValidationEvents : IOAuthValidationEvents {
14+
public class OAuthValidationEvents {
1515
/// <summary>
1616
/// Invoked when a ticket is to be created from an introspection response.
1717
/// </summary>

src/AspNet.Security.OAuth.Validation/OAuthValidationOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ public OAuthValidationOptions() {
5555
/// The application may implement the interface fully, or it may create an instance of
5656
/// <see cref="OAuthValidationEvents"/> and assign delegates only to the events it wants to process.
5757
/// </summary>
58-
public IOAuthValidationEvents Events { get; set; } = new OAuthValidationEvents();
58+
public OAuthValidationEvents Events { get; set; } = new OAuthValidationEvents();
5959
}
6060
}

src/Owin.Security.OAuth.Introspection/IOAuthIntrospectionEvents.cs

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/Owin.Security.OAuth.Introspection/OAuthIntrospectionEvents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Owin.Security.OAuth.Introspection {
1111
/// <summary>
1212
/// Allows customization of introspection handling within the middleware.
1313
/// </summary>
14-
public class OAuthIntrospectionEvents : IOAuthIntrospectionEvents {
14+
public class OAuthIntrospectionEvents {
1515
/// <summary>
1616
/// Invoked when a ticket is to be created from an introspection response.
1717
/// </summary>

src/Owin.Security.OAuth.Introspection/OAuthIntrospectionOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public OAuthIntrospectionOptions()
6464
/// The application may implement the interface fully, or it may create an instance of
6565
/// <see cref="OAuthIntrospectionEvents"/> and assign delegates only to the events it wants to process.
6666
/// </summary>
67-
public IOAuthIntrospectionEvents Events { get; set; } = new OAuthIntrospectionEvents();
67+
public OAuthIntrospectionEvents Events { get; set; } = new OAuthIntrospectionEvents();
6868

6969
/// <summary>
7070
/// Gets or sets the HTTP client used to communicate

src/Owin.Security.OAuth.Validation/IOAuthValidationEvents.cs

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)