Interface AuthorizationProvider
- All Superinterfaces:
io.vertx.lang.rx.RxDelegate
- All Known Implementing Classes:
JWTAuthorization, KeycloakAuthorization, MicroProfileAuthorization, PolicyBasedAuthorizationProvider, PropertyFileAuthorization, ScopeAuthorization, SqlAuthorization
public interface AuthorizationProvider
extends io.vertx.lang.rx.RxDelegate
The role of an AuthorizationProvider is to return a set of Authorization.
Note that each AuthorizationProvider must provide its own unique Id
NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
-
Method Summary
Modifier and TypeMethodDescriptiongetAuthorizations(User user) Updates the user with the set of authorizations.getId()returns the id of the authorization providerstatic AuthorizationProviderrxGetAuthorizations(User user) Updates the user with the set of authorizations.
-
Method Details
-
getDelegate
AuthorizationProvider getDelegate()- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate
-
getId
-
getAuthorizations
Updates the user with the set of authorizations.- Parameters:
user- user to lookup and update.- Returns:
- Future void to signal end of asynchronous call.
-
rxGetAuthorizations
Updates the user with the set of authorizations.- Parameters:
user- user to lookup and update.- Returns:
- Future void to signal end of asynchronous call.
-
newInstance
-