-
Notifications
You must be signed in to change notification settings - Fork 7.4k
[OID4VCI] Remove interval property from Credential Offer #40412
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
Conversation
Closes keycloak#39294 Signed-off-by: forkimenjeckayang <forkimenjeckayang@gmail.com>
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.
Unreported flaky test detected, please review
Unreported flaky test detectedIf the flaky tests below are affected by the changes, please review and update the changes accordingly. Otherwise, a maintainer should report the flaky tests prior to merging the PR. org.keycloak.testsuite.cluster.GroupInvalidationClusterTest#crudWithFailover
org.keycloak.testsuite.cluster.UserInvalidationClusterTest#crudWithFailover
|
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.
looks good to me
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.
@forkimenjeckayang @Captain-P-Goldfish @francis-pouatcha Thanks for the PR and review
This pull request addresses the recent specification change in OpenID for Verifiable Credential Issuance (OID4VCI), where the interval property was moved from the Credential Offer to the Deferred Credential Response.
To align with the updated specification, this change removes the interval property from the
PreAuthorizedCode
model, which is part of theCredential Offer
payload.Changes:
interval
field and its correspondinggetter
andsetter
methods fromPreAuthorizedCode.java
.equals()
andhashCode()
methods in PreAuthorizedCode.java to reflect the removal of the interval property.Closes #39294