open class RedirectAuthHandler : AuthHandler, Handler<RoutingContext>
An auth handler that's used to handle auth by redirecting user to a custom login page. NOTE: This class has been automatically generated from the io.vertx.ext.web.handler.RedirectAuthHandler non RX-ified interface using Vert.x codegen.
RedirectAuthHandler(delegate: RedirectAuthHandler) |
static val __TYPE_ARG: TypeArg<RedirectAuthHandler> |
open fun addAuthorities(authorities: MutableSet<String>): AuthHandler
Add a set of required authorities for this auth handler |
|
open fun addAuthority(authority: String): AuthHandler
Add a required authority for this auth handler |
|
open fun authorize(user: User, handler: Handler<AsyncResult<Void>>): Unit
Authorizes the given user against all added authorities. |
|
open static fun create(authProvider: AuthProvider): AuthHandleropen static fun create(authProvider: AuthProvider, loginRedirectURL: String): AuthHandleropen static fun create(authProvider: AuthProvider, loginRedirectURL: String, returnURLParam: String): AuthHandler
Create a handler |
|
open fun equals(other: Any?): Boolean |
|
open fun getDelegate(): RedirectAuthHandler |
|
open fun handle(arg0: RoutingContext): Unit |
|
open fun hashCode(): Int |
|
open static fun newInstance(arg: RedirectAuthHandler): RedirectAuthHandler |
|
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. |
|
open fun rxAuthorize(user: User): Completable
Authorizes the given user against all added authorities. |
|
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. |
|
open fun toString(): String |