We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be nice if users could listen for authorization events specific to the type of source:
@EventListener public void onEvent(AuthorizationDeniedEvent<MethodInvocation> event) { // ... }
One way this can be done is by having AuthorizationDeniedEvent and AuthorizationGrantedEvent implement ResolvableTypeProvider:
AuthorizationDeniedEvent
AuthorizationGrantedEvent
ResolvableTypeProvider
ResolvableType type = ResolvableType.forClassWithGenerics(getClass(), ResolvableType.forInstance(getObject()));
The text was updated successfully, but these errors were encountered:
Hi @jzheaux, i would like to work on this ticket, could you assign it to me please?
Sorry, something went wrong.
jzheaux
franticticktick
No branches or pull requests
It would be nice if users could listen for authorization events specific to the type of source:
One way this can be done is by having
AuthorizationDeniedEvent
andAuthorizationGrantedEvent
implementResolvableTypeProvider
:The text was updated successfully, but these errors were encountered: