Interface AuthorizationProvider
- All Superinterfaces:
RxDelegate
- All Known Implementing Classes:
JWTAuthorization,KeycloakAuthorization,MicroProfileAuthorization,PolicyBasedAuthorizationProvider,PropertyFileAuthorization,ScopeAuthorization,SqlAuthorization
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 TypeMethodDescriptionio.reactivex.rxjava3.core.CompletablegetAuthorizations(User user) Updates the user with the set of authorizations.getId()returns the id of the authorization providerstatic AuthorizationProviderio.reactivex.rxjava3.core.CompletablerxGetAuthorizations(User user) Updates the user with the set of authorizations.
-
Method Details
-
getDelegate
AuthorizationProvider getDelegate()- Specified by:
getDelegatein interfaceRxDelegate
-
getId
String getId()returns the id of the authorization provider- Returns:
-
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
-