tech.greenfield.vertx.irked.auth.NullAuthorizationToken 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;
/**
* An {@link AuthorizationToken} implementation to specify that no authorization token was present
* @author odeda
*/
public class NullAuthorizationToken extends AuthorizationToken {
public NullAuthorizationToken() {
update(null, null);
}
}