-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed formatting to use tabs and not spaces
- Loading branch information
1 parent
399b7fc
commit 0f884b4
Showing
31 changed files
with
975 additions
and
1,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
src/EventStore.Plugins/Authentication/IAuthenticationPlugin.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
namespace EventStore.Plugins.Authentication; | ||
|
||
public interface IAuthenticationPlugin { | ||
string Name { get; } | ||
string Version { get; } | ||
string CommandLineName { get; } | ||
string Name { get; } | ||
string Version { get; } | ||
string CommandLineName { get; } | ||
|
||
/// <summary> | ||
/// Creates an authentication provider factory for the authentication plugin | ||
/// </summary> | ||
/// <param name="authenticationConfigPath">The path to the configuration file for the authentication plugin</param> | ||
IAuthenticationProviderFactory GetAuthenticationProviderFactory(string authenticationConfigPath); | ||
/// <summary> | ||
/// Creates an authentication provider factory for the authentication plugin | ||
/// </summary> | ||
/// <param name="authenticationConfigPath">The path to the configuration file for the authentication plugin</param> | ||
IAuthenticationProviderFactory GetAuthenticationProviderFactory(string authenticationConfigPath); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
src/EventStore.Plugins/Authorization/IAuthorizationPlugin.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
namespace EventStore.Plugins.Authorization; | ||
|
||
public interface IAuthorizationPlugin { | ||
string Name { get; } | ||
string Version { get; } | ||
string CommandLineName { get; } | ||
string Name { get; } | ||
string Version { get; } | ||
string CommandLineName { get; } | ||
|
||
/// <summary> | ||
/// Creates an authorization provider factory for the authorization plugin | ||
/// </summary> | ||
/// <param name="authorizationConfigPath">The path to the configuration file for the authorization plugin</param> | ||
IAuthorizationProviderFactory GetAuthorizationProviderFactory(string authorizationConfigPath); | ||
/// <summary> | ||
/// Creates an authorization provider factory for the authorization plugin | ||
/// </summary> | ||
/// <param name="authorizationConfigPath">The path to the configuration file for the authorization plugin</param> | ||
IAuthorizationProviderFactory GetAuthorizationProviderFactory(string authorizationConfigPath); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.