Uses of Interface
io.vertx.ext.auth.authorization.Authorizations
-
Packages that use Authorizations Package Description io.vertx.ext.auth io.vertx.ext.auth.authorization -
-
Uses of Authorizations in io.vertx.ext.auth
Methods in io.vertx.ext.auth that return Authorizations Modifier and Type Method Description default AuthorizationsUser. authorizations()Returns user's authorizations that have been previously loaded by the providers. -
Uses of Authorizations in io.vertx.ext.auth.authorization
Methods in io.vertx.ext.auth.authorization that return Authorizations Modifier and Type Method Description AuthorizationsAuthorizations. clear()Clears the authorizations.AuthorizationsAuthorizations. forEach(String providerId, Consumer<Authorization> consumer)Walk all the authorizations for the given provider and call the consumer for each authorization.AuthorizationsAuthorizations. forEach(BiConsumer<String,Authorization> consumer)Walk all the authorizations and call the consumer for each authorization.default AuthorizationsAuthorizations. put(String providerId, Authorization... authorizations)Replaces the current authorizations with the given authorizations for the given provider.AuthorizationsAuthorizations. put(String providerId, Set<Authorization> authorizations)Replaces the current authorizations with the given authorizations for the given provider.AuthorizationsAuthorizations. putAll(Map<String,Set<Authorization>> authorizations)Replaces the current authorizations with the given authorizations.
-