tech.greenfield.vertx.irked.auth.SimpleAuthrizationToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irked-vertx Show documentation
Show all versions of irked-vertx Show documentation
Opinionated framework for vertx-web route configuration and dispatch
package tech.greenfield.vertx.irked.auth;
/**
* Implementation of a non-standard authentication scheme where a single opaque token is provided
* without an authencation scheme name
* @author odeda
*/
public class SimpleAuthrizationToken extends AuthorizationToken {
public SimpleAuthrizationToken() {}
public SimpleAuthrizationToken(String token) {
update("Simple", token);
}
}