Interface AuthorizationEventPublisher
- All Known Implementing Classes:
- SpringAuthorizationEventPublisher
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A contract for publishing authorization events
- Since:
- 5.7
- See Also:
- 
Method SummaryModifier and TypeMethodDescription<T> voidpublishAuthorizationEvent(Supplier<Authentication> authentication, T object, AuthorizationDecision decision) Deprecated.default <T> voidpublishAuthorizationEvent(Supplier<Authentication> authentication, T object, AuthorizationResult result) Publish the given details in the form of an event, typicallyAuthorizationGrantedEventorAuthorizationDeniedEvent.
- 
Method Details- 
publishAuthorizationEvent@Deprecated <T> void publishAuthorizationEvent(Supplier<Authentication> authentication, T object, AuthorizationDecision decision) Deprecated.Publish the given details in the form of an event, typicallyAuthorizationGrantedEventorAuthorizationDeniedEvent. Note that success events can be very noisy if enabled by default. Because of this implementations may choose to drop success events by default.- Type Parameters:
- T- the secured object's type
- Parameters:
- authentication- a- Supplierfor the current user
- object- the secured object
- decision- the decision about whether the user may access the secured object
 
- 
publishAuthorizationEventdefault <T> void publishAuthorizationEvent(Supplier<Authentication> authentication, T object, AuthorizationResult result) Publish the given details in the form of an event, typicallyAuthorizationGrantedEventorAuthorizationDeniedEvent. Note that success events can be very noisy if enabled by default. Because of this implementations may choose to drop success events by default.- Type Parameters:
- T- the secured object's type
- Parameters:
- authentication- a- Supplierfor the current user
- object- the secured object
- result-- AuthorizationResultthe result about whether the user may access the secured object
- Since:
- 6.4
 
 
- 
publishAuthorizationEvent(Supplier, Object, AuthorizationResult)instead