Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dheyman committed Dec 10, 2024
1 parent 1e4971c commit e8dc943
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ public class AccessTokenProviderFactory {

private static final SFLogger logger =
SFLoggerFactory.getLogger(AccessTokenProviderFactory.class);
private static final Set<AuthenticatorType> ELIGIBLE_AUTH_TYPES = new HashSet<>(Arrays.asList(AuthenticatorType.OAUTH_AUTHORIZATION_CODE, AuthenticatorType.OAUTH_CLIENT_CREDENTIALS));
private static final Set<AuthenticatorType> ELIGIBLE_AUTH_TYPES =
new HashSet<>(
Arrays.asList(
AuthenticatorType.OAUTH_AUTHORIZATION_CODE,
AuthenticatorType.OAUTH_CLIENT_CREDENTIALS));

private final SessionUtilExternalBrowser.AuthExternalBrowserHandlers browserHandler;
private final int browserAuthorizationTimeoutSeconds;
Expand Down

0 comments on commit e8dc943

Please sign in to comment.