19 changed files
WPE.App.Authentication.Maui | ||
Business | ||
Flow | ||
AuthClient.cs rename, edit | ||
IAuthClient.cs rename, edit | ||
IAuthenticatorProvider.cs rename, edit | ||
WebAuthenticatorProvider.cs rename, edit | ||
WebBrowserAuthenticator.cs rename, edit | ||
Token | ||
ISecureTokenStorage.cs rename, edit | ||
ITokenManager.cs rename, edit | ||
SecureTokenStorage.cs rename, edit | ||
TokenManager.cs rename, edit | ||
AuthorizationMessageHandler.cs rename, edit | ||
NativeAuthenticationStateProvider.cs rename, edit | ||
Models | ||
AuthenticationConfiguration.cs rename, edit | ||
Platforms/Windows | ||
AuthPage.cs rename, edit | ||
CustomWebAuthenticatorProvider.cs rename, edit | ||
WorkaroundWebAuthenticator.cs rename, edit | ||
ServiceCollectionExtensions.cs rename, edit | ||
WPE.App.Authentication.Maui.csproj rename, edit | ||
ReadMe.md | ||
WPE.App.Authentication.Maui.sln rename, edit | ||
AuthClient.cs
/WPE.App.Authentication.Maui/Business/Flow/AuthClient.cs-2+2/WPE.App.Authentication.Maui/Business/Flow/AuthClient.cs
Renamed from
/WPE.App.Authentication.Native/Business/Flow/AuthClient.cs
Add comment 1 using IdentityModel.Client;
Add comment 2 using IdentityModel.OidcClient;
Add comment 3 using IdentityModel.OidcClient.Results;
Add comment 4 Minus using Infsoft.WPE.App.Authentication.Native.Models;
Add comment 4 Plus using Infsoft.WPE.App.Authentication.Maui.Models;
Add comment 5 using Microsoft.Extensions.Options;
Add comment 6 using IBrowser = IdentityModel.OidcClient.Browser.IBrowser;
Add comment 7
Add comment 8 Minus namespace Infsoft.WPE.App.Authentication.Native.Business.Flow
Add comment 8 Plus namespace Infsoft.WPE.App.Authentication.Maui.Business.Flow
Add comment 9 {
Add comment 10 /// <summary>
Add comment 11 /// Implements <see cref="IAuthClient"/>
IAuthClient.cs
/WPE.App.Authentication.Maui/Business/Flow/IAuthClient.cs-1+1/WPE.App.Authentication.Maui/Business/Flow/IAuthClient.cs
Renamed from
/WPE.App.Authentication.Native/Business/Flow/IAuthClient.cs
Add comment 1 using IdentityModel.OidcClient;
Add comment 2 using IdentityModel.OidcClient.Results;
Add comment 3
Add comment 4 Minus namespace Infsoft.WPE.App.Authentication.Native.Business.Flow
Add comment 4 Plus namespace Infsoft.WPE.App.Authentication.Maui.Business.Flow
Add comment 5 {
Add comment 6 /// <summary>
Add comment 7 /// OIDC auth client
IAuthenticatorProvider.cs
/WPE.App.Authentication.Maui/Business/Flow/IAuthenticatorProvider.cs-1+1/WPE.App.Authentication.Maui/Business/Flow/IAuthenticatorProvider.cs
Renamed from
/WPE.App.Authentication.Native/Business/Flow/IAuthenticatorProvider.cs
Add comment 1 Minus namespace Infsoft.WPE.App.Authentication.Native.Business.Flow
Add comment 1 Plus namespace Infsoft.WPE.App.Authentication.Maui.Business.Flow
Add comment 2 {
Add comment 3 /// <summary>
Add comment 4 /// Provides the WebAuthenticator to use, allows for platform dependend implementations
WebAuthenticatorProvider.cs
/WPE.App.Authentication.Maui/Business/Flow/WebAuthenticatorProvider.cs/WPE.App.Authentication.Maui/Business/Flow/WebAuthenticatorProvider.cs
Renamed from
/WPE.App.Authentication.Native/Business/Flow/WebAuthenticatorProvider.cs
WebBrowserAuthenticator.cs
/WPE.App.Authentication.Maui/Business/Flow/WebBrowserAuthenticator.cs/WPE.App.Authentication.Maui/Business/Flow/WebBrowserAuthenticator.cs
Renamed from
/WPE.App.Authentication.Native/Business/Flow/WebBrowserAuthenticator.cs
ISecureTokenStorage.cs
/WPE.App.Authentication.Maui/Business/Token/ISecureTokenStorage.cs/WPE.App.Authentication.Maui/Business/Token/ISecureTokenStorage.cs
Renamed from
/WPE.App.Authentication.Native/Business/Token/ISecureTokenStorage.cs
ITokenManager.cs
/WPE.App.Authentication.Maui/Business/Token/ITokenManager.cs/WPE.App.Authentication.Maui/Business/Token/ITokenManager.cs
Renamed from
/WPE.App.Authentication.Native/Business/Token/ITokenManager.cs
SecureTokenStorage.cs
/WPE.App.Authentication.Maui/Business/Token/SecureTokenStorage.cs/WPE.App.Authentication.Maui/Business/Token/SecureTokenStorage.cs
Renamed from
/WPE.App.Authentication.Native/Business/Token/SecureTokenStorage.cs
TokenManager.cs
/WPE.App.Authentication.Maui/Business/Token/TokenManager.cs/WPE.App.Authentication.Maui/Business/Token/TokenManager.cs
Renamed from
/WPE.App.Authentication.Native/Business/Token/TokenManager.cs
AuthorizationMessageHandler.cs
/WPE.App.Authentication.Maui/Business/AuthorizationMessageHandler.cs/WPE.App.Authentication.Maui/Business/AuthorizationMessageHandler.cs
Renamed from
/WPE.App.Authentication.Native/Business/AuthorizationMessageHandler.cs
NativeAuthenticationStateProvider.cs
/WPE.App.Authentication.Maui/Business/NativeAuthenticationStateProvider.cs/WPE.App.Authentication.Maui/Business/NativeAuthenticationStateProvider.cs
Renamed from
/WPE.App.Authentication.Native/Business/NativeAuthenticationStateProvider.cs
AuthenticationConfiguration.cs
/WPE.App.Authentication.Maui/Models/AuthenticationConfiguration.cs/WPE.App.Authentication.Maui/Models/AuthenticationConfiguration.cs
Renamed from
/WPE.App.Authentication.Native/Models/AuthenticationConfiguration.cs
AuthPage.cs
/WPE.App.Authentication.Maui/Platforms/Windows/AuthPage.cs/WPE.App.Authentication.Maui/Platforms/Windows/AuthPage.cs
Renamed from
/WPE.App.Authentication.Native/Platforms/Windows/AuthPage.cs
CustomWebAuthenticatorProvider.cs
/WPE.App.Authentication.Maui/Platforms/Windows/CustomWebAuthenticatorProvider.cs/WPE.App.Authentication.Maui/Platforms/Windows/CustomWebAuthenticatorProvider.cs
Renamed from
/WPE.App.Authentication.Native/Platforms/Windows/CustomWebAuthenticatorProvider.cs
WorkaroundWebAuthenticator.cs
/WPE.App.Authentication.Maui/Platforms/Windows/WorkaroundWebAuthenticator.cs/WPE.App.Authentication.Maui/Platforms/Windows/WorkaroundWebAuthenticator.cs
Renamed from
/WPE.App.Authentication.Native/Platforms/Windows/WorkaroundWebAuthenticator.cs
ServiceCollectionExtensions.cs
/WPE.App.Authentication.Maui/ServiceCollectionExtensions.cs/WPE.App.Authentication.Maui/ServiceCollectionExtensions.cs
Renamed from
/WPE.App.Authentication.Native/ServiceCollectionExtensions.cs
WPE.App.Authentication.Maui.csproj
/WPE.App.Authentication.Maui/WPE.App.Authentication.Maui.csproj/WPE.App.Authentication.Maui/WPE.App.Authentication.Maui.csproj
Renamed from
/WPE.App.Authentication.Native/WPE.App.Authentication.Native.csproj
WPE.App.Authentication.Maui.sln
/WPE.App.Authentication.Maui.sln/WPE.App.Authentication.Maui.sln
Renamed from
/WPE.App.Authentication.Native.sln