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;
public class SimpleAuthrizationToken extends AuthorizationToken {
public SimpleAuthrizationToken() {}
public SimpleAuthrizationToken(String token) {
update("Simple", token);
}
}