Uses of Class
io.vertx.rxjava.ext.auth.authorization.Authorization
-
Packages that use Authorization Package Description io.vertx.rxjava.ext.auth io.vertx.rxjava.ext.auth.authorization io.vertx.rxjava.ext.web.handler -
-
Uses of Authorization in io.vertx.rxjava.ext.auth
Methods in io.vertx.rxjava.ext.auth with parameters of type Authorization Modifier and Type Method Description UserUser. isAuthorized(Authorization authority)Deprecated.UserUser. isAuthorized(Authorization authority, Handler<AsyncResult<Boolean>> resultHandler)Deprecated.rx.Single<Boolean>User. rxIsAuthorized(Authorization authority)Deprecated. -
Uses of Authorization in io.vertx.rxjava.ext.auth.authorization
Subclasses of Authorization in io.vertx.rxjava.ext.auth.authorization Modifier and Type Class Description classAndAuthorizationAllows to perform a logical 'and' between several authorizationsclassNotAuthorizationAllows to perform a logical 'not' of the specified authorizationclassOrAuthorizationAllows to perform a logical 'or' between several authorizationsclassPermissionBasedAuthorizationRepresents a permission Note that the permission can optionally be assigned to a specific resourceclassRoleBasedAuthorizationRepresents a role.classWildcardPermissionBasedAuthorizationRepresents a wildcard permission (ie: 'manage:order:*' '*:orders', '*', etc.) Note that it can optionally be assigned to a specific resourceFields in io.vertx.rxjava.ext.auth.authorization with type parameters of type Authorization Modifier and Type Field Description static TypeArg<Authorization>Authorization. __TYPE_ARGMethods in io.vertx.rxjava.ext.auth.authorization that return Authorization Modifier and Type Method Description AuthorizationNotAuthorization. getAuthorization()static AuthorizationAuthorization. newInstance(Authorization arg)Methods in io.vertx.rxjava.ext.auth.authorization that return types with arguments of type Authorization Modifier and Type Method Description Set<Authorization>Authorizations. get(String providerId)List<Authorization>AndAuthorization. getAuthorizations()List<Authorization>OrAuthorization. getAuthorizations()Methods in io.vertx.rxjava.ext.auth.authorization with parameters of type Authorization Modifier and Type Method Description AuthorizationsAuthorizations. add(String providerId, Authorization authorization)AndAuthorizationAndAuthorization. addAuthorization(Authorization authorization)OrAuthorizationOrAuthorization. addAuthorization(Authorization authorization)static NotAuthorizationNotAuthorization. create(Authorization authorization)booleanAuthorization. verify(Authorization authorization)this method verifies whether or not the authorization implies the specified authorization.Method parameters in io.vertx.rxjava.ext.auth.authorization with type arguments of type Authorization Modifier and Type Method Description AuthorizationsAuthorizations. add(String providerId, Set<Authorization> authorizations)static AuthorizationProviderAuthorizationProvider. create(String id, Set<Authorization> authorizations)create an authorization provider with the specified id and authorizations -
Uses of Authorization in io.vertx.rxjava.ext.web.handler
Methods in io.vertx.rxjava.ext.web.handler with parameters of type Authorization Modifier and Type Method Description static AuthorizationHandlerAuthorizationHandler. create(Authorization authorization)create the the handler that will check the specified authorization Note that to check several authorizations, you can specify a sub-interface such asAndAuthorizationorOrAuthorization
-