vertx / io.vertx.reactivex.ext.web.handler / ChainAuthHandler

ChainAuthHandler

open class ChainAuthHandler : AuthHandler, Handler<RoutingContext>

An auth handler that chains to a sequence of handlers. NOTE: This class has been automatically generated from the io.vertx.ext.web.handler.ChainAuthHandler non RX-ified interface using Vert.x codegen.

Constructors

<init>

ChainAuthHandler(delegate: ChainAuthHandler)

Properties

__TYPE_ARG

static val __TYPE_ARG: TypeArg<ChainAuthHandler>

Functions

addAuthorities

open fun addAuthorities(authorities: MutableSet<String>): AuthHandler

Add a set of required authorities for this auth handler

addAuthority

open fun addAuthority(authority: String): AuthHandler

Add a required authority for this auth handler

append

open fun append(authHandler: AuthHandler): ChainAuthHandler

Appends a auth provider to the chain.

authorize

open fun authorize(user: User, handler: Handler<AsyncResult<Void>>): Unit

Authorizes the given user against all added authorities.

clear

open fun clear(): Unit

Clears the chain.

create

open static fun create(): ChainAuthHandler

equals

open fun equals(other: Any?): Boolean

getDelegate

open fun getDelegate(): ChainAuthHandler

handle

open fun handle(arg0: RoutingContext): Unit

hashCode

open fun hashCode(): Int

newInstance

open static fun newInstance(arg: ChainAuthHandler): ChainAuthHandler

parseCredentials

open fun parseCredentials(context: RoutingContext, handler: Handler<AsyncResult<JsonObject>>): Unit

Parses the credentials from the request into a JsonObject. The implementation should be able to extract the required info for the auth provider in the format the provider expects.

remove

open fun remove(authHandler: AuthHandler): Boolean

Removes a provider from the chain.

rxAuthorize

open fun rxAuthorize(user: User): Completable

Authorizes the given user against all added authorities.

rxParseCredentials

open fun rxParseCredentials(context: RoutingContext): Single<JsonObject>

Parses the credentials from the request into a JsonObject. The implementation should be able to extract the required info for the auth provider in the format the provider expects.

toString

open fun toString(): String