Skip to content

Commit

Permalink
visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
nagybalint001 committed Oct 19, 2021
1 parent 9a90fd0 commit fb6a497
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Keycloak.Client/IKeycloakAuthClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace Keycloak.Client
{
public interface IKeycloakAuthClient
internal interface IKeycloakAuthClient
{
[Post("/auth/realms/master/protocol/openid-connect/token")]
Task<TokenResponse> GetServiceTokenAsync([Body(BodySerializationMethod.UrlEncoded)] ServiceClientCredentials credentials);
Expand Down
2 changes: 1 addition & 1 deletion src/Keycloak.Client/IKeycloakAuthTokenStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Keycloak.Client
{
public interface IKeycloakAuthTokenStore
internal interface IKeycloakAuthTokenStore
{
Task<string> GetOrFetchAccessTokenAsync(Func<Task<TokenResponse>> fetchTokenFunc);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Keycloak.Client/ServiceUserAuthHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Keycloak.Client
{
public class ServiceUserAuthHandler : DelegatingHandler
internal class ServiceUserAuthHandler : DelegatingHandler
{
private readonly IKeycloakAuthClient _keycloakAuthClient;
private readonly IKeycloakAuthTokenStore _keycloakAuthTokenStore;
Expand Down

0 comments on commit fb6a497

Please sign in to comment.