Uses of Interface
io.vertx.ext.auth.authorization.Authorization
-
Packages that use Authorization Package Description io.vertx.ext.auth.audit io.vertx.ext.auth.authorization -
-
Uses of Authorization in io.vertx.ext.auth.audit
Methods in io.vertx.ext.auth.audit with parameters of type Authorization Modifier and Type Method Description SecurityAuditSecurityAudit. authorization(Authorization authorization) -
Uses of Authorization in io.vertx.ext.auth.authorization
Subinterfaces of Authorization in io.vertx.ext.auth.authorization Modifier and Type Interface Description interfaceAndAuthorizationAllows to perform a logical 'and' between several authorizationsinterfaceNotAuthorizationAllows to perform a logical 'not' of the specified authorizationinterfaceOrAuthorizationAllows to perform a logical 'or' between several authorizationsinterfacePermissionBasedAuthorizationRepresents a permission Note that the permission can optionally be assigned to a specific resourceinterfaceRoleBasedAuthorizationRepresents a role.interfaceWildcardPermissionBasedAuthorizationRepresents a wildcard permission (ie: 'manage:order:*' '*:orders', '*', etc.)Methods in io.vertx.ext.auth.authorization that return Authorization Modifier and Type Method Description AuthorizationNotAuthorization. getAuthorization()Methods in io.vertx.ext.auth.authorization that return types with arguments of type Authorization Modifier and Type Method Description List<Authorization>AndAuthorization. getAuthorizations()List<Authorization>OrAuthorization. getAuthorizations()Methods in io.vertx.ext.auth.authorization with parameters of type Authorization Modifier and Type Method Description AndAuthorizationAndAuthorization. addAuthorization(Authorization authorization)OrAuthorizationOrAuthorization. addAuthorization(Authorization authorization)static NotAuthorizationNotAuthorization. create(Authorization authorization)default AuthorizationsAuthorizations. put(String providerId, Authorization... authorizations)Replaces the current authorizations with the given authorizations for the given provider.booleanAuthorization. verify(Authorization authorization)this method verifies whether or not the authorization implies the specified authorization.booleanAuthorizations. verify(Authorization resolvedAuthorization)Verifies that the given authorization is present in the authorizations.Method parameters in io.vertx.ext.auth.authorization with type arguments of type Authorization Modifier and Type Method Description 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.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.
-