/*
* Copyright 2015 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.auth.jwt;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.*;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.auth.authentication.AuthenticationProvider;
import io.vertx.ext.auth.jwt.impl.JWTAuthProviderImpl;
import io.vertx.ext.auth.JWTOptions;
Factory interface for creating JWT based AuthenticationProvider
instances. Author: Paulo Lopes
/**
* Factory interface for creating JWT based {@link io.vertx.ext.auth.authentication.AuthenticationProvider} instances.
*
* @author Paulo Lopes
*/
@VertxGen
public interface JWTAuth extends AuthenticationProvider {
Create a JWT auth provider
Params: - vertx – the Vertx instance
- config – the config
Returns: the auth provider
/**
* Create a JWT auth provider
*
* @param vertx the Vertx instance
* @param config the config
* @return the auth provider
*/
static JWTAuth create(Vertx vertx, JWTAuthOptions config) {
return new JWTAuthProviderImpl(vertx, config);
}
Generate a new JWT token.
Params: - claims – Json with user defined claims for a list of official claims
@see www.iana.org/assignments/jwt/jwt.xhtml
- options – extra options for the generation
Returns: JWT encoded token
/**
* Generate a new JWT token.
*
* @param claims Json with user defined claims for a list of official claims
* @see <a href="http://www.iana.org/assignments/jwt/jwt.xhtml">www.iana.org/assignments/jwt/jwt.xhtml</a>
* @param options extra options for the generation
*
* @return JWT encoded token
*/
String generateToken(JsonObject claims, JWTOptions options);
Generate a new JWT token.
Params: - claims – Json with user defined claims for a list of official claims
@see www.iana.org/assignments/jwt/jwt.xhtml
Returns: JWT encoded token
/**
* Generate a new JWT token.
*
* @param claims Json with user defined claims for a list of official claims
* @see <a href="http://www.iana.org/assignments/jwt/jwt.xhtml">www.iana.org/assignments/jwt/jwt.xhtml</a>
*
* @return JWT encoded token
*/
default String generateToken(JsonObject claims) {
return generateToken(claims, new JWTOptions());
}
}