Interface AuthorizationProvider
-
- All Known Implementing Classes:
JWTAuthorization
,KeycloakAuthorization
,MicroProfileAuthorization
,PropertyFileAuthorization
,ScopeAuthorization
,SqlAuthorization
public interface AuthorizationProvider
The role of an AuthorizationProvider is to return a set of Authorization. Note that each AuthorizationProvider must provide its own unique IdNOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<Void>
getAuthorizations(User user)
Updates the user with the set of authorizations.AuthorizationProvider
getDelegate()
String
getId()
returns the id of the authorization providerstatic AuthorizationProvider
newInstance(AuthorizationProvider arg)
rx.Single<Void>
rxGetAuthorizations(User user)
Updates the user with the set of authorizations.
-
-
-
Method Detail
-
getDelegate
AuthorizationProvider getDelegate()
-
getId
String getId()
returns the id of the authorization provider- Returns:
-
getAuthorizations
Future<Void> getAuthorizations(User user)
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
rx.Single<Void> rxGetAuthorizations(User user)
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
static AuthorizationProvider newInstance(AuthorizationProvider arg)
-
-