Skip to content

Commit

Permalink
Sharing federated tokens in oidc authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
indeewari committed Mar 5, 2024
1 parent 9ec9257 commit 83a6f82
Show file tree
Hide file tree
Showing 3 changed files with 591 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ public class OIDCAuthenticatorConstants {
public static final String ID_TOKEN_PARAM = "idToken";
public static final String SESSION_DATA_KEY_PARAM = "sessionDataKey";
public static final String CLIENT_ID_PARAM = "clientId";
public static final String REFRESH_TOKEN = "refresh_token";
public static final String EXPIRES_IN = "expires_in";
public static final String FEDERATED_TOKENS = "federated_tokens";
public static final String SHARE_FEDERATED_TOKEN_CONFIG = "ShareFederatedToken";
public static final String SHARE_FEDERATED_TOKEN_PARAM = "share_federated_token";
public static final String FEDERATED_TOKEN_ALLOWED_SCOPE = "FederatedTokenAllowedScope";
public static final String FEDERATED_TOKEN_SCOPE = "federated_token_scope";

private OIDCAuthenticatorConstants() {

Expand Down
Loading

0 comments on commit 83a6f82

Please sign in to comment.