-
Notifications
You must be signed in to change notification settings - Fork 592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 21826: Add and read metatype for remaining OIDC Private Key JWT config attributes #25099
Issue 21826: Add and read metatype for remaining OIDC Private Key JWT config attributes #25099
Conversation
#build |
Your personal build request is at https://wasrtc.hursley.ibm.com:9443/jazz/resource/itemOid/com.ibm.team.build.BuildResult/_P_UHAOLJEe2xRt1mHVwGHw Target locations of links might be accessible only to IBM employees. |
The build ayoho-25099-20230424-1204 For help analyzing your personal build, go to https://libh-proxy1.fyre.ibm.com/cognitive/buildAnalysis.html?uuid=_P_UHAOLJEe2xRt1mHVwGHw |
… config attributes - Adds the following attributes to the metatype for the `<openidConnectClient>` and `<oidcLogin>` elements: - tokenEndpointAuthSigningAlgorithm - keyAliasName For OpenLiberty#21826
69afc3f
to
80482ac
Compare
#libby |
Your personal build request is at https://wasrtc.hursley.ibm.com:9443/jazz/resource/itemOid/com.ibm.team.build.BuildResult/_KF4OMONoEe2xRt1mHVwGHw Target locations of links might be accessible only to IBM employees. |
Code analysis and actionsDO NOT DELETE THIS COMMENT.
|
The build ayoho-25099-20230425-0702 For help analyzing your personal build, go to https://libh-proxy1.fyre.ibm.com/cognitive/buildAnalysis.html?uuid=_KF4OMONoEe2xRt1mHVwGHw |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some small things that can be addressed in the next pr.
Tr.debug(tc, CFG_KEY_TOKEN_ENDPOINT_AUTH_SIGNING_ALGORITHM + " = " + tokenEndpointAuthSigningAlgorithm); | ||
Tr.debug(tc, KEY_keyAliasName + " = " + keyAliasName); | ||
Tr.debug(tc, KEY_tokenEndpointAuthMethod + " = " + tokenEndpointAuthMethod); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line 425 is a duplicate of line 422
Tr.debug(tc, CFG_KEY_TOKEN_ENDPOINT_AUTH_SIGNING_ALGORITHM + " = " + tokenEndpointAuthSigningAlgorithm); | |
Tr.debug(tc, KEY_keyAliasName + " = " + keyAliasName); | |
Tr.debug(tc, KEY_tokenEndpointAuthMethod + " = " + tokenEndpointAuthMethod); | |
Tr.debug(tc, CFG_KEY_TOKEN_ENDPOINT_AUTH_SIGNING_ALGORITHM + " = " + tokenEndpointAuthSigningAlgorithm); | |
Tr.debug(tc, KEY_keyAliasName + " = " + keyAliasName); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, good catch. Not sure how I managed to do that.
} | ||
|
||
public String adjustConfigAttributeValueBasedOnListOfSupportedValues(String discoveryDocKey, String configAttributeName, String originalConfigValue) { | ||
String overideValue = originalConfigValue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: overideValue -> overrideValue
<openidConnectClient>
and<oidcLogin>
elements:tokenEndpointAuthSigningAlgorithm
keyAliasName
For #21826