/*
* Copyright 2014 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.ext.web.handler;
import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.auth.User;
import io.vertx.ext.web.RoutingContext;
import java.util.Set;
Base interface for auth handlers.
An auth handler allows your application to provide authentication/authorization support.
Auth handler requires a SessionHandler
to be on the routing chain before it.
Author: Tim Fox, Paulo Lopes
/**
* Base interface for auth handlers.
* <p>
* An auth handler allows your application to provide authentication/authorization support.
* <p>
* Auth handler requires a {@link SessionHandler} to be on the routing chain before it.
*
* @author <a href="http://tfox.org">Tim Fox</a>
* @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a>
*/
@VertxGen(concrete = false)
public interface AuthHandler extends Handler<RoutingContext> {
Add a required authority for this auth handler
Params: - authority – the authority
Returns: a reference to this, so the API can be used fluently
/**
* Add a required authority for this auth handler
*
* @param authority the authority
* @return a reference to this, so the API can be used fluently
*/
@Fluent
AuthHandler addAuthority(String authority);
Add a set of required authorities for this auth handler
Params: - authorities – the set of authorities
Returns: a reference to this, so the API can be used fluently
/**
* Add a set of required authorities for this auth handler
*
* @param authorities the set of authorities
* @return a reference to this, so the API can be used fluently
*/
@Fluent
AuthHandler addAuthorities(Set<String> authorities);
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.
Params: - context – the routing context
- handler – the handler to be called once the information is available.
/**
* 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.
*
* @param context the routing context
* @param handler the handler to be called once the information is available.
*/
void parseCredentials(RoutingContext context, Handler<AsyncResult<JsonObject>> handler);
Authorizes the given user against all added authorities.
Params: - user – a user.
- handler – the handler for the result.
/**
* Authorizes the given user against all added authorities.
*
* @param user a user.
* @param handler the handler for the result.
*/
void authorize(User user, Handler<AsyncResult<Void>> handler);
}