All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.web.handler.impl.NOOPAuthenticationProvider Maven / Gradle / Ivy

package io.vertx.ext.web.handler.impl;

import io.vertx.core.Future;
import io.vertx.ext.auth.User;
import io.vertx.ext.auth.authentication.AuthenticationProvider;
import io.vertx.ext.auth.authentication.Credentials;

final class NOOPAuthenticationProvider implements AuthenticationProvider {
  @Override
  public Future authenticate(Credentials credentials) {
    return Future.failedFuture("NOOP Provider does not authenticate");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy