Skip to content
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

The secureResponse can return just SEND_* states (based on javadoc) #24855

Merged
merged 1 commit into from Mar 13, 2024

Conversation

dmatej
Copy link
Contributor

@dmatej dmatej commented Mar 12, 2024

No description provided.

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
@dmatej dmatej added the bug Something isn't working label Mar 12, 2024
@dmatej dmatej added this to the 7.0.14 milestone Mar 12, 2024
@avpinchuk
Copy link
Contributor

The secification also says this (at point (3) in the message processing model).

@dmatej
Copy link
Contributor Author

dmatej commented Mar 13, 2024

@dmatej dmatej merged commit 0334f3d into eclipse-ee4j:master Mar 13, 2024
2 checks passed
@dmatej dmatej deleted the realmAuthStatus branch March 13, 2024 20:20
@@ -99,7 +99,7 @@ public AuthStatus validateRequest(final MessageInfo messageInfo, final Subject c

@Override
public AuthStatus secureResponse(final MessageInfo messageInfo, final Subject serviceSubject) throws AuthException {
return AuthStatus.SUCCESS;
return AuthStatus.SEND_SUCCESS;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That one doesn't need to be overriden, it's already the default:

default AuthStatus secureResponse(MessageInfo messageInfo, Subject serviceSubject) throws AuthException {
return AuthStatus.SEND_SUCCESS;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants