Class AuthorizationHandler

  • All Implemented Interfaces:
    io.vertx.core.Handler<RoutingContext>

    public class AuthorizationHandler
    extends Object
    implements io.vertx.core.Handler<RoutingContext>
    Base interface for authorization handlers that provide authorization support.

    AuthorizationHandlerImpl usually requires a AuthenticationHandler to be on the routing chain before it or a custom handler that has previously set a User in the RoutingContext

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • AuthorizationHandler

        public AuthorizationHandler​(io.vertx.ext.web.handler.AuthorizationHandler delegate)
      • AuthorizationHandler

        public AuthorizationHandler​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDelegate

        public io.vertx.ext.web.handler.AuthorizationHandler getDelegate()
      • handle

        public void handle​(RoutingContext event)
        Something has happened, so handle it.
        Specified by:
        handle in interface io.vertx.core.Handler<RoutingContext>
        Parameters:
        event - the event to handle
      • create

        public static AuthorizationHandler 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 as AndAuthorization or OrAuthorization
        Parameters:
        authorization - the authorization to attest.
        Returns:
        fluent self.
      • addAuthorizationProvider

        public AuthorizationHandler addAuthorizationProvider​(AuthorizationProvider authorizationProvider)
        Adds a provider that shall be used to retrieve the required authorizations for the user to attest. Multiple calls are allowed to retrieve authorizations from many sources.
        Parameters:
        authorizationProvider - a provider.
        Returns:
        fluent self.
      • newInstance

        public static AuthorizationHandler newInstance​(io.vertx.ext.web.handler.AuthorizationHandler arg)